|
-
February 18th, 2003, 04:22 PM
#1
Updating database using CommandBuilder
How do I update a database from a dataset with SQL "JOIN" using CommandBuilder...
The problem appears when I try to update from a dataset made from SQL with "JOIN"...
-
February 18th, 2003, 04:27 PM
#2
Check how many columns you have in the table. The CommandBuilder is designed for "normalized" tables less than 101 columns. Maybe you JOIN gives you more
-
February 19th, 2003, 02:41 AM
#3
You can't use the CommandBuilder on SQL statements that contain a JOIN, only on single table SQL statements.
A quote from the MSDN library:
"Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated SQL Server database."
-
February 19th, 2003, 05:30 AM
#4
OK
OK... Thank you.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|