diff options
author | mattn <mattn.jp@gmail.com> | 2015-08-07 12:25:09 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2015-08-07 12:25:09 +0900 |
commit | 0fa27b5cb05c4239ff23cbec3af1d56af75c1854 (patch) | |
tree | c0f37b4653f23dabdd248e860cfdfe630aaf28e2 | |
parent | update README.md (diff) | |
parent | Add fix for go-sqlite3 truncating 64-bit integers when compiled by 32-bit min... (diff) | |
download | golite-0fa27b5cb05c4239ff23cbec3af1d56af75c1854.tar.gz golite-0fa27b5cb05c4239ff23cbec3af1d56af75c1854.tar.xz |
Merge pull request #225 from kiwih/master
Fix for go-sqlite3 truncating 64-bit lastInsertIDs on 32-bit systems
-rw-r--r-- | sqlite3.go | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -48,21 +48,21 @@ _sqlite3_bind_blob(sqlite3_stmt *stmt, int n, void *p, int np) { #include <stdint.h> static int -_sqlite3_exec(sqlite3* db, const char* pcmd, long* rowid, long* changes) +_sqlite3_exec(sqlite3* db, const char* pcmd, long long* rowid, long long* changes) { int rv = sqlite3_exec(db, pcmd, 0, 0, 0); - *rowid = (long) sqlite3_last_insert_rowid(db); - *changes = (long) sqlite3_changes(db); + *rowid = (long long) sqlite3_last_insert_rowid(db); + *changes = (long long) sqlite3_changes(db); return rv; } static int -_sqlite3_step(sqlite3_stmt* stmt, long* rowid, long* changes) +_sqlite3_step(sqlite3_stmt* stmt, long long* rowid, long long* changes) { int rv = sqlite3_step(stmt); sqlite3* db = sqlite3_db_handle(stmt); - *rowid = (long) sqlite3_last_insert_rowid(db); - *changes = (long) sqlite3_changes(db); + *rowid = (long long) sqlite3_last_insert_rowid(db); + *changes = (long long) sqlite3_changes(db); return rv; } @@ -243,7 +243,7 @@ func (c *SQLiteConn) exec(cmd string) (driver.Result, error) { pcmd := C.CString(cmd) defer C.free(unsafe.Pointer(pcmd)) - var rowid, changes C.long + var rowid, changes C.longlong rv := C._sqlite3_exec(c.db, pcmd, &rowid, &changes) if rv != C.SQLITE_OK { return nil, c.lastError() @@ -536,7 +536,7 @@ func (s *SQLiteStmt) Exec(args []driver.Value) (driver.Result, error) { C.sqlite3_clear_bindings(s.s) return nil, err } - var rowid, changes C.long + var rowid, changes C.longlong rv := C._sqlite3_step(s.s, &rowid, &changes) if rv != C.SQLITE_ROW && rv != C.SQLITE_OK && rv != C.SQLITE_DONE { err := s.c.lastError() |