]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/db/sqlite/ffi/ffi.factor
db.sqlite: Fix NULL returns for INTEGER columns in sqlite
[factor.git] / basis / db / sqlite / ffi / ffi.factor
index f505add8535a65dc6f086914a2e9c48665559f4a..1c0defc317835c7704b7e6c5aee95c72fd11a93f 100644 (file)
@@ -132,7 +132,7 @@ FUNCTION: c-string sqlite3_column_decltype ( sqlite3_stmt* pStmt, int col )
 FUNCTION: int sqlite3_column_int ( sqlite3_stmt* pStmt, int col )
 FUNCTION: sqlite3_int64 sqlite3_column_int64 ( sqlite3_stmt* pStmt, int col )
 ! Bind the same function as above, but for unsigned 64bit integers
-FUNCTION-ALIAS: sqlite3-column-uint64
+FUNCTION-ALIAS: sqlite3_column_uint64
     sqlite3_uint64 sqlite3_column_int64 ( sqlite3_stmt* pStmt, int col )
 FUNCTION: double sqlite3_column_double ( sqlite3_stmt* pStmt, int col )
 FUNCTION: c-string sqlite3_column_name ( sqlite3_stmt* pStmt, int col )