Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dnan.test39 sqlite3_bind_double $::STMT 1 NaN
46 sqlite3_bind_double $::STMT 1 +Inf
52 sqlite3_bind_double $::STMT 1 -Inf
58 sqlite3_bind_double $::STMT 1 -NaN
64 sqlite3_bind_double $::STMT 1 NaN0
94 sqlite3_bind_double $::STMT 1 NaN
100 sqlite3_bind_double $::STMT 1 +Inf
106 sqlite3_bind_double $::STMT 1 -Inf
112 sqlite3_bind_double $::STMT 1 -NaN
118 sqlite3_bind_double $::STMT 1 NaN0
[all …]
H A Dbind.test210 sqlite3_bind_double $VM 1 1234.1234
211 sqlite3_bind_double $VM 2 0.00001
212 sqlite3_bind_double $VM 3 123456789
228 sqlite3_bind_double $VM 1 NaN
229 sqlite3_bind_double $VM 2 1e300
230 sqlite3_bind_double $VM 3 -1e-300
412 catch { sqlite3_bind_double $VM 0 5.0 }
415 catch { sqlite3_bind_double $VM 4 6.0 }
H A Distrue.test133 sqlite3_bind_double $::STMT 1 $val
H A Dspeedtest1.c1328 sqlite3_bind_double(g.pStmt, 1, rSpacing*.05); in testset_cte()
1329 sqlite3_bind_double(g.pStmt, 2, rSpacing); in testset_cte()
1864 sqlite3_bind_double(g.pStmt, j+2, (double)x1); in testset_orm()
H A Dtrace3.test205 list [sqlite3_bind_double $STMT 1 123] [sqlite3_expanded_sql $STMT]
H A Dexpr.test1037 sqlite3_bind_double $::STMT 1 $val
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js1271 m = capi.sqlite3_bind_double;
1280 m = capi.sqlite3_bind_double;
/sqlite-3.40.0/src/
H A Dloadext.c141 sqlite3_bind_double,
H A Dvdbeapi.c1538 int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){ in sqlite3_bind_double() function
1629 rc = sqlite3_bind_double(pStmt, i, in sqlite3_bind_value()
H A Dsqlite3ext.h391 #define sqlite3_bind_double sqlite3_api->bind_double macro
H A Dtclsqlite.c1458 sqlite3_bind_double(pStmt, i, r); in dbPrepareAndBind()
H A Dtest1.c3769 rc = sqlite3_bind_double(pStmt, idx, value); in test_bind_double()
H A Dshell.c.in5694 sqlite3_bind_double(pInsert, i+1, sqlite3_column_double(pQuery,i));
H A Dsqlite.h.in4562 int sqlite3_bind_double(sqlite3_stmt*, int, double);
/sqlite-3.40.0/ext/session/
H A Dsqlite3session.c2479 rc = sqlite3_bind_double(pSelect, i+1, rVal); in sessionSelectBind()