Bind 64-bit int values.

This commit is contained in:
H. S. Teoh 2017-12-12 21:57:11 -08:00
parent 4defbe4ddd
commit ba4c0ea13a
1 changed files with 8 additions and 0 deletions

View File

@ -502,6 +502,11 @@ template extract(A, T, R...){
throw new DatabaseException("bind " ~ db.error()); throw new DatabaseException("bind " ~ db.error());
} }
void bind(int col, long value){
if(sqlite3_bind_int64(s, col, value) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
}
void bind(int col, const byte[] value){ void bind(int col, const byte[] value){
if(value is null) { if(value is null) {
if(sqlite3_bind_null(s, col) != SQLITE_OK) if(sqlite3_bind_null(s, col) != SQLITE_OK)
@ -513,6 +518,8 @@ template extract(A, T, R...){
} }
void bind(int col, Variant v) { void bind(int col, Variant v) {
if(v.peek!long)
bind(col, v.get!long);
if(v.peek!int) if(v.peek!int)
bind(col, v.get!int); bind(col, v.get!int);
if(v.peek!string) if(v.peek!string)
@ -714,6 +721,7 @@ int sqlite3_bind_blob(sqlite3_stmt*, int, void*, int n, void*);
//int sqlite3_bind_blob(sqlite3_stmt*, int, void*, int n, void(*)(void*)); //int sqlite3_bind_blob(sqlite3_stmt*, int, void*, int n, void(*)(void*));
int sqlite3_bind_double(sqlite3_stmt*, int, double); int sqlite3_bind_double(sqlite3_stmt*, int, double);
int sqlite3_bind_int(sqlite3_stmt*, int, int); int sqlite3_bind_int(sqlite3_stmt*, int, int);
int sqlite3_bind_int64(sqlite3_stmt*, int, long);
int sqlite3_bind_null(sqlite3_stmt*, int); int sqlite3_bind_null(sqlite3_stmt*, int);
int sqlite3_bind_text(sqlite3_stmt*, int, const(char)*, int n, void*); int sqlite3_bind_text(sqlite3_stmt*, int, const(char)*, int n, void*);
//int sqlite3_bind_text(sqlite3_stmt*, int, char*, int n, void(*)(void*)); //int sqlite3_bind_text(sqlite3_stmt*, int, char*, int n, void(*)(void*));