Home
last modified time | relevance | path

Searched refs:sqlite3_bind_double (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/kyua/utils/sqlite/
H A Dstatement.cpp510 const int error = ::sqlite3_bind_double(_pimpl->stmt, index, value); in bind()
/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h400 #define sqlite3_bind_double sqlite3_api->bind_double macro
H A Dsqlite3.h4899 SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double);
H A Dshell.c24091 sqlite3_bind_double(pStmt, i, NAN); in bind_prepared_stmt()
24095 sqlite3_bind_double(pStmt, i, INFINITY); in bind_prepared_stmt()
26680 sqlite3_bind_double(pInsert, i+1, sqlite3_column_double(pQuery,i)); in tryToCloneData()
H A Dsqlite3.c5218 SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double);
93197 SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
93295 rc = sqlite3_bind_double(pStmt, i,
138771 #define sqlite3_bind_double sqlite3_api->bind_double
139219 sqlite3_bind_double,
231110 rc = sqlite3_bind_double(pSelect, i+1, rVal);
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1528 sqlite3_bind_double(pStmt, i, r); in dbPrepareAndBind()