Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/2shady4u/godot-sqlite
/ functions
Functions
809 in github.com/2shady4u/godot-sqlite
⨍
Functions
809
◇
Types & classes
125
Function
apndWrite
** Write data to an apnd-file. */
src/sqlite/shell.c:9378
Function
ascii_read_one_field
Read a single field of ASCII delimited text. ** ** + Input comes from p->in. ** + Store results in p->z of length p->n. Space to hold p->z come
src/sqlite/shell.c:26291
Method
backup_database
src/gdsqlite.cpp:641
Method
backup_to
src/gdsqlite.cpp:613
Function
base64
This function does the work for the SQLite base64(x) UDF. */
src/sqlite/shell.c:4714
Function
base85
This function does the work for the SQLite base85(x) UDF. */
src/sqlite/shell.c:5096
Function
base85DigitValue
src/sqlite/shell.c:4940
Function
beginTimer
** Begin timing an operation */
src/sqlite/shell.c:707
Method
bind_parameter
src/gdsqlite.cpp:245
Function
captureOutputCallback
** This is the callback routine from sqlite3_exec() that appends all ** output onto the end of a ShellText object. */
src/sqlite/shell.c:22938
Method
checkReservedLock
src/vfs/gdsqlite_file.cpp:104
Function
cli_wcswidth
** Return the width, in display columns, of a UTF-8 string. ** ** Each normal character counts as 1. Zero-width characters count ** as zero, and doub
src/sqlite/shell.c:1174
Method
close_db
src/gdsqlite.cpp:188
Method
compileoption_used
src/gdsqlite.cpp:1304
Function
completionBestIndex
** SQLite will invoke this method one or more times while planning a query ** that uses the completion virtual table. This routine needs to create **
src/sqlite/shell.c:9000
Function
completionClose
** Destructor for a completion_cursor. */
src/sqlite/shell.c:8766
Function
completionColumn
** Return values of columns for the row at which the completion_cursor ** is currently pointing. */
src/sqlite/shell.c:8894
Function
completionConnect
** The completionConnect() method is invoked to create a new ** completion_vtab that describes the completion virtual table. ** ** Think of this routi
src/sqlite/shell.c:8693
Function
completionDisconnect
** This method is the destructor for completion_cursor objects. */
src/sqlite/shell.c:8735
Function
completionEof
** Return TRUE if the cursor has been moved off of the last ** row of output. */
src/sqlite/shell.c:8935
Function
completionFilter
** This method is called to "rewind" the completion_cursor object back ** to the first row of output. This method is always called at least ** once p
src/sqlite/shell.c:8946
Function
completionOpen
** Constructor for a new completion_cursor object. */
src/sqlite/shell.c:8743
Function
completionRowid
** Return the rowid for the current row. In this implementation, the ** rowid is the same as the output value. */
src/sqlite/shell.c:8925
Function
countNonzeros
Callback for sqlite3_exec() with query with leading count(*) column. * The first argument is expected to be an int*, referent to be incremented * if
src/sqlite/shell.c:13324
Method
create_function
src/gdsqlite.cpp:862
Method
create_table
src/gdsqlite.cpp:459
Function
csv_read_one_field
Read a single field of CSV text. Compatible with rfc4180 and extended ** with the option of having a separator other than ",". ** ** + Input comes
src/sqlite/shell.c:26201
Function
dbdataBestIndex
** This function interprets two types of constraints: ** ** schema=? ** pgno=? ** ** If neither are present, idxNum is set to 0. If schema
src/sqlite/shell.c:17545
Function
dbdataClose
** Close an sqlite_dbdata or sqlite_dbptr cursor. */
src/sqlite/shell.c:17635
Function
dbdataColumn
** Return a column for the sqlite_dbdata or sqlite_dbptr table. */
src/sqlite/shell.c:18207
Function
dbdataConnect
** Connect to an sqlite_dbdata (pAux==0) or sqlite_dbptr (pAux!=0) virtual ** table. */
src/sqlite/shell.c:17491
Function
dbdataDisconnect
** Disconnect from or destroy a sqlite_dbdata or sqlite_dbptr virtual table. */
src/sqlite/shell.c:17523
Function
dbdataEof
** Return true if the cursor is at EOF. */
src/sqlite/shell.c:18071
Function
dbdataFilter
** xFilter method for sqlite_dbdata and sqlite_dbptr. */
src/sqlite/shell.c:18139
Function
dbdataOpen
** Open a new sqlite_dbdata or sqlite_dbptr cursor. */
src/sqlite/shell.c:17595
Function
dbdataRowid
** Return the rowid for an sqlite_dbdata or sqlite_dptr table. */
src/sqlite/shell.c:18266
Function
decimalAddFunc
** SQL Function: decimal_add(X, Y) ** decimal_sub(X, Y) ** ** Return the sum or difference of X and Y. */
src/sqlite/shell.c:4320
Function
decimalCmpFunc
** SQL Function: decimal_cmp(X, Y) ** ** Return negative, zero, or positive if X is less then, equal to, or ** greater than Y. */
src/sqlite/shell.c:4002
Function
decimalCollFunc
** Compare text in decimal order. */
src/sqlite/shell.c:4292
Function
decimalFunc
** SQL Function: decimal(X) ** OR: decimal_exp(X) ** ** Convert input X into decimal and then back into text. ** ** If X is originally a
src/sqlite/shell.c:4272
Function
decimalMulFunc
** SQL Function: decimal_mul(X, Y) ** ** Return the product of X and Y. */
src/sqlite/shell.c:4414
Function
decimalPow2Func
** SQL Function: decimal_pow2(N) ** ** Return the N-th power of 2. N must be an integer. */
src/sqlite/shell.c:4443
Function
decimalSubFunc
src/sqlite/shell.c:4333
Function
decimalSumFinalize
src/sqlite/shell.c:4402
Function
decimalSumInverse
src/sqlite/shell.c:4381
Function
decimalSumStep
Aggregate function: decimal_sum(X) ** ** Works like sum() except that it uses decimal arithmetic for unlimited ** precision. */
src/sqlite/shell.c:4355
Function
decimalSumValue
src/sqlite/shell.c:4397
Method
delete_rows
src/gdsqlite.cpp:757
Method
deviceCharacteristics
src/vfs/gdsqlite_file.cpp:124
Method
drop_table
src/gdsqlite.cpp:605
Function
dummyCompare
** Define and possibly pretend to use a useless collation sequence. ** This pretense allows expert to accept SQL using custom collations. */
src/sqlite/shell.c:14277
Function
dummyUDF
** dummy functions for no-op implementation of UDFs during expert's work */
src/sqlite/shell.c:14297
Function
dummyUDFvalue
src/sqlite/shell.c:14303
Function
dump_callback
** This is a different callback routine used for dumping the database. ** Each row received by this callback consists of a table name, ** the table ty
src/sqlite/shell.c:24767
Function
dynamicContinuePrompt
Upon demand, derive the continuation prompt to display. */
src/sqlite/shell.c:966
Function
editFunc
src/sqlite/shell.c:21569
Method
enable_load_extension
src/gdsqlite.cpp:1310
Function
endTimer
** Print the timing results. */
src/sqlite/shell.c:723
Method
execute_statement
src/gdsqlite.cpp:286
Function
expertBestIndex
src/sqlite/shell.c:12824
Function
expertClose
** Virtual table module xClose method. */
src/sqlite/shell.c:12919
Function
expertColumn
** Virtual table module xColumn method. */
src/sqlite/shell.c:12968
Function
expertConnect
** This function is the implementation of both the xConnect and xCreate ** methods of the r-tree virtual table. ** ** argv[0] -> module name **
src/sqlite/shell.c:12782
Function
expertDisconnect
src/sqlite/shell.c:12818
Function
expertEof
** Virtual table module xEof method. ** ** Return non-zero if the cursor does not currently point to a valid ** record (i.e if the scan has finished)
src/sqlite/shell.c:12932
Function
expertFilter
** Virtual table module xFilter method. */
src/sqlite/shell.c:12981
Function
expertOpen
** Virtual table module xOpen method. */
src/sqlite/shell.c:12907
Function
expertRowid
** Virtual table module xRowid method. */
src/sqlite/shell.c:12959
Function
expertUpdate
src/sqlite/shell.c:12891
Method
export_to_buffer
src/gdsqlite.cpp:1059
Method
export_to_json
src/gdsqlite.cpp:920
Function
faultsim_callback
** This is the fault-sim callback */
src/sqlite/shell.c:28527
Function
fiddle_db_arg
Only for emcc experimentation purposes. */
src/sqlite/shell.c:33782
Function
fiddle_db_filename
** Returns the filename of the given db name, assuming "main" if ** zDbName is NULL. Returns NULL if globalDb is not opened. */
src/sqlite/shell.c:33801
Function
fiddle_db_handle
** Returns a pointer to the current DB handle. */
src/sqlite/shell.c:33763
Function
fiddle_db_vfs
** Returns a pointer to the given DB name's VFS. If zDbName is 0 then ** "main" is assumed. Returns 0 if no db with the given name is ** open. */
src/sqlite/shell.c:33772
Function
fiddle_exec
** Trivial exportable function for emscripten. It processes zSql as if ** it were input to the sqlite3 shell and redirects all output to the ** wasm b
src/sqlite/shell.c:33877
Function
fiddle_experiment
Only for emcc experimentation purposes. */
src/sqlite/shell.c:33756
Function
fiddle_export_db
** Uses the current database's VFS xRead to stream the db file's ** contents out to the given callback. The callback gets a single ** chunk of size n
src/sqlite/shell.c:33839
Function
fiddle_interrupt
** Intended to be called via a SharedWorker() while a separate ** SharedWorker() (which manages the wasm module) is performing work ** which should be
src/sqlite/shell.c:33793
Function
fiddle_reset_db
** Completely wipes out the contents of the currently-opened database ** but leaves its storage intact for reuse. If any transactions are ** active, t
src/sqlite/shell.c:33812
Method
fileControl
** No xFileControl() verbs are implemented by this VFS. */
src/vfs/gdsqlite_file.cpp:112
Method
fileSize
** Write the size of the file in bytes to *pSize. */
src/vfs/gdsqlite_file.cpp:83
Function
fileio_chmod
src/sqlite/shell.c:7586
Function
fileio_mkdir
src/sqlite/shell.c:7603
Function
fsdirBestIndex
** SQLite will invoke this method one or more times while planning a query ** that uses the generate_series virtual table. This routine needs to crea
src/sqlite/shell.c:8416
Function
fsdirClose
** Destructor for an fsdir_cursor. */
src/sqlite/shell.c:8168
Function
fsdirColumn
** Return values of columns for the row at which the series_cursor ** is currently pointing. */
src/sqlite/shell.c:8255
Function
fsdirConnect
** Construct a new fsdir virtual table object. */
src/sqlite/shell.c:8097
Function
fsdirDisconnect
** This method is the destructor for fsdir vtab objects. */
src/sqlite/shell.c:8124
Function
fsdirEof
** Return TRUE if the cursor has been moved off of the last ** row of output. */
src/sqlite/shell.c:8334
Function
fsdirFilter
** xFilter callback. ** ** idxNum bit Meaning ** 0x01 PATH=N ** 0x02 DIR=N ** 0x04 LEVEL<N ** 0x08
src/sqlite/shell.c:8348
Function
fsdirNext
** Advance an fsdir_cursor to its next row of output. */
src/sqlite/shell.c:8191
Function
fsdirOpen
** Constructor for a new fsdir_cursor object. */
src/sqlite/shell.c:8132
Function
fsdirRowid
** Return the rowid for the current row. In this implementation, the ** first row returned is assigned rowid value 1, and each subsequent ** row a val
src/sqlite/shell.c:8324
Function
function_callback
src/gdsqlite.cpp:778
Method
gdsqlite_vfs
** This function returns a pointer to the VFS implemented in this file. ** To make the VFS available to SQLite: ** ** sqlite3_vfs_register(gdsqlite_
src/vfs/gdsqlite_vfs.cpp:227
Function
gdsqlite_vfs_access
** Query the file-system to see if the named file exists, is readable or ** is both readable and writable. */
src/vfs/gdsqlite_vfs.cpp:95
Function
gdsqlite_vfs_currentTime
** Set *pTime to the current UTC time expressed as a Julian day. Return ** SQLITE_OK if successful, or an error code otherwise. ** ** http://en.wiki
src/vfs/gdsqlite_vfs.cpp:204
Function
gdsqlite_vfs_currentTimeInt64
src/vfs/gdsqlite_vfs.cpp:215
← previous
next →
501–600 of 809, ranked by callers