mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +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,
|
SQLUSMALLINT icol,
|
||||||
SQLSMALLINT fCType,
|
SQLSMALLINT fCType,
|
||||||
SQLPOINTER rgbValue,
|
SQLPOINTER rgbValue,
|
||||||
SQLINTEGER cbValueMax,
|
SQLLEN cbValueMax,
|
||||||
SQLINTEGER FAR *pcbValue)
|
SQLLEN FAR *pcbValue)
|
||||||
{
|
{
|
||||||
struct _hstmt *stmt;
|
struct _hstmt *stmt;
|
||||||
struct _hdbc *dbc;
|
struct _hdbc *dbc;
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ int i;
|
|||||||
if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO)
|
if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO)
|
||||||
{
|
{
|
||||||
UCHAR szCol1[60];
|
UCHAR szCol1[60];
|
||||||
SQLINTEGER length;
|
SQLLEN length;
|
||||||
|
|
||||||
printf("excecuting first statement\n");
|
printf("excecuting first statement\n");
|
||||||
retcode = SQLExecute(hstmt);
|
retcode = SQLExecute(hstmt);
|
||||||
|
|||||||
Reference in New Issue
Block a user