Following SQL statement is running fine with VB 6.0 application while using sql server driver (SQL SERVER/SQLSRV32.DLL) but when changing the sql serve driver to (ODBC 11 driver for SQL Server/MSODBCSQL11.DLL ), it is showing the error message "Could not find the stored procedure 'GO'" during execution.
SQL Command is below
GO
Alter table test add constraints ck_test check (value=1)
SQL Command is below
GO
Alter table test add constraints ck_test check (value=1)