Not at all. You can even create a single data adapter that has a select query going to one database (OleDb) and an update/insert/delete going to another. Each Command object that defines each operation (insert/select/update/delete) has its own connection property and this can be any type of connection.
-
Peter