From 42adcf2a78e8877683c2572f23c1aa8e0cec2ddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Pereira?= Date: Thu, 25 Oct 2012 10:48:14 -0200 Subject: [PATCH] Update src/ls_odbc.c Changes needed to compile and run without "#runtime ckeck error" in x64 connecting in SQL Server 2008 RC2 --- src/ls_odbc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ls_odbc.c b/src/ls_odbc.c index 64ca376..3983039 100644 --- a/src/ls_odbc.c +++ b/src/ls_odbc.c @@ -190,7 +190,7 @@ static int push_column(lua_State *L, int coltypes, const SQLHSTMT hstmt, /* nUmber */ case 'u': { double num; - SQLINTEGER got; + SQLLEN got; SQLRETURN rc = SQLGetData(hstmt, i, SQL_C_DOUBLE, &num, 0, &got); if (error(rc)) return fail(L, hSTMT, hstmt); @@ -203,7 +203,7 @@ static int push_column(lua_State *L, int coltypes, const SQLHSTMT hstmt, /* bOol */ case 'o': { char b; - SQLINTEGER got; + SQLLEN got; SQLRETURN rc = SQLGetData(hstmt, i, SQL_C_BIT, &b, 0, &got); if (error(rc)) return fail(L, hSTMT, hstmt); @@ -218,7 +218,7 @@ static int push_column(lua_State *L, int coltypes, const SQLHSTMT hstmt, /* bInary */ case 'i': { SQLSMALLINT stype = (type == 't') ? SQL_C_CHAR : SQL_C_BINARY; - SQLINTEGER got; + SQLLEN got; char *buffer; luaL_Buffer b; SQLRETURN rc;