Hello friend how can I perform Bulk insert into MDB from Dataset.
till now I have done something like this
string InsertBulkQry = "INSERT INTO Table1 SELECT * FROM table IN "
+MYDs.Tables[0];
I am using C# and VS 2005
Or is there any other way to update Ms Access table Faster with multiple records
Thanks All
Yes it is possible. More Info :INSERT INTO Statement (Microsoft Access SQL)
Not tested, it should work. Or you can create a query in Access and Execute it from C# code.