DECLARE
CommitCmpt int; HERE the variable to use it later
BEGIN
INSERT INTO test....
Commitcmpt := CommitCmpt + 1 ;
END;
I am getting an error on this line:
CommitCmpt int;
com.ibatis.common.jdbc.exception.NestedSQLException:
--- Cause: com.microsoft.sqlserver.jdbc.SQLServerException: 'int' is not a recognized CURSOR option.
Any help?
I am using Ibatis to insert records into an sql server 2008 table