MySQL - Inserting multiple records at the same time.

Using the Mysql Connector.Net, you should be able to issue multiple commands within one SQL statement.

B.
 
No, there should be no problems of doing that. AFAIK is mySQL designed to be a multiuser database engine just like SQL server and unlike Access.

/Kejpa
 
I read on their main page that they handle ACID since version 3.x (cant recall). That means that one user shouldnt have an issue with another user, and you can be guaranteed that a set of inserts or updates can commit as one unit, if you want.

-ner
 
Back
Top