diff --git a/src/odbc/mdbodbc.h b/src/odbc/mdbodbc.h index a5c5b09..24ae4a5 100644 --- a/src/odbc/mdbodbc.h +++ b/src/odbc/mdbodbc.h @@ -72,8 +72,8 @@ struct _hstmt { struct _sql_bind_info { int column_number; int column_bindtype; /* type/conversion required */ - int column_bindlen; /* size of varaddr buffer */ - int *column_lenbind; /* where to store length of varaddr used */ + SQLLEN column_bindlen; /* size of varaddr buffer */ + SQLLEN *column_lenbind; /* where to store length of varaddr used */ char *varaddr; struct _sql_bind_info *next; }; diff --git a/src/odbc/odbc.c b/src/odbc/odbc.c index d6d1855..e85edae 100644 --- a/src/odbc/odbc.c +++ b/src/odbc/odbc.c @@ -513,7 +513,7 @@ SQLRETURN SQL_API SQLBindCol( /* if this is a repeat */ if (cur) { cur->column_bindtype = fCType; - cur->column_lenbind = (int *)pcbValue; + cur->column_lenbind = pcbValue; cur->column_bindlen = cbValueMax; cur->varaddr = (char *) rgbValue; } else { @@ -522,7 +522,7 @@ SQLRETURN SQL_API SQLBindCol( newitem->column_number = icol; newitem->column_bindtype = fCType; newitem->column_bindlen = cbValueMax; - newitem->column_lenbind = (int *)pcbValue; + newitem->column_lenbind = pcbValue; newitem->varaddr = (char *) rgbValue; /* if there's no head yet */ if (! stmt->bind_head) {