Merge branch 'master' of github.com:keplerproject/luasql
This commit is contained in:
commit
531ab6a13f
@ -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;
|
||||
|
@ -382,7 +382,11 @@ static int conn_execute(lua_State *L)
|
||||
int numcols;
|
||||
const char *tail;
|
||||
|
||||
#if SQLITE_VERSION_NUMBER > 3006013
|
||||
res = sqlite3_prepare_v2(conn->sql_conn, statement, -1, &vm, &tail);
|
||||
#else
|
||||
res = sqlite3_prepare(conn->sql_conn, statement, -1, &vm, &tail);
|
||||
#endif
|
||||
if (res != SQLITE_OK)
|
||||
{
|
||||
errmsg = sqlite3_errmsg(conn->sql_conn);
|
||||
@ -544,7 +548,11 @@ static int env_connect(lua_State *L)
|
||||
|
||||
sourcename = luaL_checkstring(L, 2);
|
||||
|
||||
#if SQLITE_VERSION_NUMBER > 3006013
|
||||
res = sqlite3_open_v2(sourcename, &conn, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
|
||||
#else
|
||||
res = sqlite3_open(sourcename, &conn);
|
||||
#endif
|
||||
if (res != SQLITE_OK)
|
||||
{
|
||||
errmsg = sqlite3_errmsg(conn);
|
||||
|
Loading…
x
Reference in New Issue
Block a user