mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-11-26 02:09:49 +08:00
Fixed 64 compilation & odbc unittest
This commit is contained in:
committed by
Brian Bruns
parent
a4a1685b1f
commit
c46fdfa782
@@ -1377,8 +1377,8 @@ SQLRETURN SQL_API SQLGetData(
|
||||
SQLUSMALLINT icol,
|
||||
SQLSMALLINT fCType,
|
||||
SQLPOINTER rgbValue,
|
||||
SQLINTEGER cbValueMax,
|
||||
SQLINTEGER FAR *pcbValue)
|
||||
SQLLEN cbValueMax,
|
||||
SQLLEN FAR *pcbValue)
|
||||
{
|
||||
struct _hstmt *stmt;
|
||||
struct _hdbc *dbc;
|
||||
|
||||
@@ -158,7 +158,7 @@ int i;
|
||||
if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO)
|
||||
{
|
||||
UCHAR szCol1[60];
|
||||
SQLINTEGER length;
|
||||
SQLLEN length;
|
||||
|
||||
printf("excecuting first statement\n");
|
||||
retcode = SQLExecute(hstmt);
|
||||
|
||||
Reference in New Issue
Block a user