Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/WiseLibs/better-sqlite3
/ functions
Functions
229 in github.com/WiseLibs/better-sqlite3
⨍
Functions
229
◇
Types & classes
76
Function
step
(ctx, ...args)
test/33.database.aggregate.js:144
Function
sync
(fn)
benchmark/benchmark.js:5
Function
verbose
(...args)
test/43.verbose.js:26
Function
wrapped
benchmark/benchmark.js:10
Method
xBestIndex
This method tells SQLite how to *plan* queries on our virtual table. It gets invoked (typically multiple times) during db.prepare().
src/util/custom-table.cpp:289
Method
xClose
src/util/custom-table.cpp:167
Method
xColumn
This method extracts some column from the cursor's current row.
src/util/custom-table.cpp:264
Method
xConnect
This method uses the factory function to instantiate a new virtual table.
src/util/custom-table.cpp:105
Method
xCreate
Although this function does nothing, we cannot use xConnect directly, because that would cause SQLite to register an eponymous virtual table.
src/util/custom-table.cpp:100
Method
xDestroy
src/util/custom-function.cpp:19
Method
xDisconnect
src/util/custom-table.cpp:157
Method
xEof
If this method returns 1, SQLite will stop scanning the virtual table.
src/util/custom-table.cpp:259
Method
xFilter
This method uses a fresh cursor to start a new scan of a virtual table. The args and idxNum are provided by xBestIndex (idxStr is unused). idxNum is a
src/util/custom-table.cpp:175
Method
xFinal
src/util/custom-aggregate.cpp:33
Method
xFunc
src/util/custom-function.cpp:23
Method
xInverse
src/util/custom-aggregate.cpp:25
Method
xNext
This method advances a virtual table's cursor to the next row. SQLite will call this method repeatedly, driving the generator function.
src/util/custom-table.cpp:231
Method
xOpen
src/util/custom-table.cpp:162
Method
xRowid
This method outputs the rowid of the cursor's current row.
src/util/custom-table.cpp:282
Method
xStep
src/util/custom-aggregate.cpp:21
Method
xStepBase
src/util/custom-aggregate.cpp:39
Method
xValue
src/util/custom-aggregate.cpp:29
Method
xValueBase
src/util/custom-aggregate.cpp:57
Method
~Backup
src/objects/backup.cpp:15
Method
~BindMap
src/util/bind-map.cpp:36
Method
~CustomFunction
src/util/custom-function.cpp:17
Method
~Database
src/objects/database.cpp:30
Method
~Statement
src/objects/statement.cpp:19
Method
~StatementIterator
The ~Statement destructor currently covers any state this object creates. Additionally, we actually DON'T want to revert stmt->locked or db_state ->it
src/objects/statement-iterator.cpp:20
← previous
201–229 of 229, ranked by callers