The DataAdapter is the bridge to your data. You can perfectly use one
DataAdapter for each different connectionstring. So instead of using
seperate DataAdapters you should make use of seperate commands for each
table that you use to set the selectCommand, InsertCommand and
UpdateCommand. You should use seperate commands instead of changing the
referenced commands.
Personnaly I prefer using seperate DataAdapters for each table.
Gabriel Lozano-Morán
[quoted text, click to view] "Ross" <Ross@discussions.microsoft.com> wrote in message
news:9C79A6ED-B851-4C78-967A-4881015FFC2A@microsoft.com...
> Hi
>
> This question might sound stupid, but I am a bit of a newbie.
>
> If I have a SQL Server DB that has several tables that I want to be able
to
> add records, edit records & delete records, do I need a separate
> SQLDataAdapter for each table?
>
> Hope somebody can help.
>
> Kind regards
>
> Ross Petersen