Hi All
I have the following query in a vb program that inserts multiple rows in a table. The database resides on a server running SQL Server 2005.
It processes about 12 rows and then I get the error.
Run-time error '-2147217900 (80040e14)':
Incorrect syntax near ',' .
Any help would be appreciated.
Thanks
I have the following query in a vb program that inserts multiple rows in a table. The database resides on a server running SQL Server 2005.
Code:
Insert into TableX values (val1,val2,val3),(val1,val2,val3),(val1,val2,val3),(etc)
Run-time error '-2147217900 (80040e14)':
Incorrect syntax near ',' .
Any help would be appreciated.
Thanks
Comment