mrezahoseini
10 years agoContributor
Execute Several Queries at once in one connection
I would like to Execute serveral queries at once and don't know how to do it my code is like this: var AConnection, Driver; AConnection = ADO.CreateADOConnection(); AConnection.Conne...
- 10 years ago
I solved it we can use "AConnection.Execute_(str);" after each query
we should not concat queries and convert them into one string
we should execute each query lonely