I connect my script with an MSSQL database using "ADODB.Connection".
Afterwards I'm copying one table to another table (works fine):
Call oDBConnection.Execute("INSERT INTO " & sTargetTable & "SELECT * FROM " & sSourceTable)
afterwards I want to delete all entries of sSourceTable (works also fine):
Call oDBConnection.Execute("DELETE FROM " & sSourceTable )
My question is: Does the second query wait till the first query is completed?