This error can occur if you are executing an ODBC script which contains the parameter "SQL_C_SBIGINT", for example: OdbcDefine(c1, "1", SQL_C_SBIGINT, 8) There is a known issue with "SQL_C_SBIGINT" when used as a parameter in the "OdbcDefine" function. Therefore to avoid the crash during replay please replace the parameter with a suitable alternative parameter, for example: OdbcDefine(c1, "1", SQL_C_SLONG , 8) Please note: When replacing the parameter be careful which new data type parameter is used; you will need to ensure that the data type range corresponds with the data in the database. Please see the Microsoft resolution below which provides information on the data range of the difference C data types: http://msdn.microsoft.com/en-us/library/ms714556(v=vs.85).aspx Old KB# 18054
↧