command to auto generate data adapters sel,upd,and delete commands?

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

I cant remember what its called but isnt there a command that will auto
generate the select update and delete commands for a data adapter at
runtime? based on a query you have...
 
Hi Brian,

You are looking for [Prefix=OleDb, Sql]CommandBuilder class.
However I recommend that you create your commands at design time and avoid
CommandBuilder since it is a blackbox and you have no control over it.
 
Back
Top