Is there a c++(preferably MFC) database object that can execute multiple SQL statements(as in a script) in one instruction? Like this :
DatabaseObject.RunSQL("Insert into GN_Version values (1,2,3,4); Insert into GN_Version values (5,2,3,4); Insert into GN_Version values (3,2,3,4);");
After doing some research, I found that with the SQL Server ODBC Driver,
CDatabase.ExecuteSQLcan execute multiple statements in one instruction.