DECLARE
CommitCmpt int; HERE the variable to use it later
BEGIN
INSERT INTO test....
Commitcmpt := CommitCmpt + 1 ;
END;
我在这一行收到错误:
CommitCmpt int;
com.ibatis.common.jdbc.exception.NestedSQLException:
--- Cause: com.microsoft.sqlserver.jdbc.SQLServerException: 'int' is not a recognized CURSOR option.
任何帮助?
我正在使用Ibatis将记录插入到sql server 2008表中