views:

245

answers:

1

I was wondering if there is any Bulk Insert functionality available on the MySql Connector. I do have to create millions of records and I believe the batching will be a great feature for this.

I'm working on an MVC project with a MySql datastore.

Thanks, Leonardo

A: 

I haven't worked with .NET, but can you use the LOAD DATE INFILE-option in MySQL? It can do millions of records per minute, depending on your database hardware.

Good luck!

Frank Heikens
I was looking for something more programming related. But I will take your advice in case there is too slow.
Homer1980ar