Search Results

3
votes
2answers
270 views

Batch SQL inserts in .NET

Is using the .NET DataAdapter's batch insert features any more efficient, as far as DB round-trips, compared to using DbCommand.ExecuteNonQuery() in a loop? Coming from the Java world, I wa …
0
votes

Issues with client consuming a .net web service upgraded from .NET 1.1 to 3.5

If you go directly to the asmx url with a web browser, and then click on the method you want to call, what's the SOAPAction that they want? next, check the Reference.vb code and see what th …
1
vote

C# Retrieving correct DbConnection object by connection string

if you're using framework 2.0 or above, and you can get them to pass in a second string with the driver class, you can use the dbProviderFactory class to load the driver for you. Db …