Hello, i want ask one question, what is faster and for duration shorter. When i need do 4 queries in mysql, for example, first INSERT into table, second SELECT this new created row and get autoincrement number and thirt*fourth make next inserts with those values like autoincrement number from new task(ID primary key) etc, its faster when i make one connection for one query, or its possible to make one connection and make multiple MysqlCommand's.
Now i have one MysqlConnection per one query and it working, but when i can make this faster, its be really nice :)
is this correct? i think it works and its faster, because when i do two connection, then i must wait again for connect to mysql, make query and then again connect and do query, now i see only one connection and 2 queries was been maded in maybe half second.