Search Results

3
votes

Bulk Insert to Oracle using .NET

You should not commit every insert because committing takes a lot of time. Which provider do you use to connect your .NET app to the oracle database? Do you use ODP.NET or the Devart provi …
2
votes

Bulk Insert to Oracle using .NET

A really fast way to solve this problem is to make a database link from the Oracle database to the MySQL database. You can create database links to non-Oracle databases. After you have created the …
4
votes

Bulk Insert to Oracle using .NET

The solution of Rob Stevenson-Legget is slow because he doesn't bind his values but he uses string.Format( ). When you ask Oracle to execute a sql statement it starts with calculating the …
2
votes

C# 3.0 Auto-Properties - useful or not?

I always create properties instead of public fields because you can use properties in an interface definition, you can't use public fields in an interface definition. …