Search Results

3
votes
2answers
305 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

.NET logging framework

Yep. Log4Net. I've been using it for a while, it has been a life saver! …
2
votes

Most efficient data type for UUID in database besides a native UUID.

In my experience, the UUID broken up into two integers will still be more efficient than using a char field. Different DBs react in different ways though. Collation could make a difference there t …