SQL Server Go statement executing issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • AshuD
    New Member
    • May 2018
    • 1

    SQL Server Go statement executing issue

    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)
Working...