MCPcopy Create free account

hub / github.com/2shady4u/godot-sqlite / functions

Functions809 in github.com/2shady4u/godot-sqlite

FunctionapndWrite
** Write data to an apnd-file. */
src/sqlite/shell.c:9378
Functionascii_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
Methodbackup_database
src/gdsqlite.cpp:641
Methodbackup_to
src/gdsqlite.cpp:613
Functionbase64
This function does the work for the SQLite base64(x) UDF. */
src/sqlite/shell.c:4714
Functionbase85
This function does the work for the SQLite base85(x) UDF. */
src/sqlite/shell.c:5096
Functionbase85DigitValue
src/sqlite/shell.c:4940
FunctionbeginTimer
** Begin timing an operation */
src/sqlite/shell.c:707
Methodbind_parameter
src/gdsqlite.cpp:245
FunctioncaptureOutputCallback
** This is the callback routine from sqlite3_exec() that appends all ** output onto the end of a ShellText object. */
src/sqlite/shell.c:22938
MethodcheckReservedLock
src/vfs/gdsqlite_file.cpp:104
Functioncli_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
Methodclose_db
src/gdsqlite.cpp:188
Methodcompileoption_used
src/gdsqlite.cpp:1304
FunctioncompletionBestIndex
** 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
FunctioncompletionClose
** Destructor for a completion_cursor. */
src/sqlite/shell.c:8766
FunctioncompletionColumn
** Return values of columns for the row at which the completion_cursor ** is currently pointing. */
src/sqlite/shell.c:8894
FunctioncompletionConnect
** 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
FunctioncompletionDisconnect
** This method is the destructor for completion_cursor objects. */
src/sqlite/shell.c:8735
FunctioncompletionEof
** Return TRUE if the cursor has been moved off of the last ** row of output. */
src/sqlite/shell.c:8935
FunctioncompletionFilter
** 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
FunctioncompletionOpen
** Constructor for a new completion_cursor object. */
src/sqlite/shell.c:8743
FunctioncompletionRowid
** Return the rowid for the current row. In this implementation, the ** rowid is the same as the output value. */
src/sqlite/shell.c:8925
FunctioncountNonzeros
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
Methodcreate_function
src/gdsqlite.cpp:862
Methodcreate_table
src/gdsqlite.cpp:459
Functioncsv_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
FunctiondbdataBestIndex
** 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
FunctiondbdataClose
** Close an sqlite_dbdata or sqlite_dbptr cursor. */
src/sqlite/shell.c:17635
FunctiondbdataColumn
** Return a column for the sqlite_dbdata or sqlite_dbptr table. */
src/sqlite/shell.c:18207
FunctiondbdataConnect
** Connect to an sqlite_dbdata (pAux==0) or sqlite_dbptr (pAux!=0) virtual ** table. */
src/sqlite/shell.c:17491
FunctiondbdataDisconnect
** Disconnect from or destroy a sqlite_dbdata or sqlite_dbptr virtual table. */
src/sqlite/shell.c:17523
FunctiondbdataEof
** Return true if the cursor is at EOF. */
src/sqlite/shell.c:18071
FunctiondbdataFilter
** xFilter method for sqlite_dbdata and sqlite_dbptr. */
src/sqlite/shell.c:18139
FunctiondbdataOpen
** Open a new sqlite_dbdata or sqlite_dbptr cursor. */
src/sqlite/shell.c:17595
FunctiondbdataRowid
** Return the rowid for an sqlite_dbdata or sqlite_dptr table. */
src/sqlite/shell.c:18266
FunctiondecimalAddFunc
** SQL Function: decimal_add(X, Y) ** decimal_sub(X, Y) ** ** Return the sum or difference of X and Y. */
src/sqlite/shell.c:4320
FunctiondecimalCmpFunc
** 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
FunctiondecimalCollFunc
** Compare text in decimal order. */
src/sqlite/shell.c:4292
FunctiondecimalFunc
** 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
FunctiondecimalMulFunc
** SQL Function: decimal_mul(X, Y) ** ** Return the product of X and Y. */
src/sqlite/shell.c:4414
FunctiondecimalPow2Func
** SQL Function: decimal_pow2(N) ** ** Return the N-th power of 2. N must be an integer. */
src/sqlite/shell.c:4443
FunctiondecimalSubFunc
src/sqlite/shell.c:4333
FunctiondecimalSumFinalize
src/sqlite/shell.c:4402
FunctiondecimalSumInverse
src/sqlite/shell.c:4381
FunctiondecimalSumStep
Aggregate function: decimal_sum(X) ** ** Works like sum() except that it uses decimal arithmetic for unlimited ** precision. */
src/sqlite/shell.c:4355
FunctiondecimalSumValue
src/sqlite/shell.c:4397
Methoddelete_rows
src/gdsqlite.cpp:757
MethoddeviceCharacteristics
src/vfs/gdsqlite_file.cpp:124
Methoddrop_table
src/gdsqlite.cpp:605
FunctiondummyCompare
** 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
FunctiondummyUDF
** dummy functions for no-op implementation of UDFs during expert's work */
src/sqlite/shell.c:14297
FunctiondummyUDFvalue
src/sqlite/shell.c:14303
Functiondump_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
FunctiondynamicContinuePrompt
Upon demand, derive the continuation prompt to display. */
src/sqlite/shell.c:966
FunctioneditFunc
src/sqlite/shell.c:21569
Methodenable_load_extension
src/gdsqlite.cpp:1310
FunctionendTimer
** Print the timing results. */
src/sqlite/shell.c:723
Methodexecute_statement
src/gdsqlite.cpp:286
FunctionexpertBestIndex
src/sqlite/shell.c:12824
FunctionexpertClose
** Virtual table module xClose method. */
src/sqlite/shell.c:12919
FunctionexpertColumn
** Virtual table module xColumn method. */
src/sqlite/shell.c:12968
FunctionexpertConnect
** 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
FunctionexpertDisconnect
src/sqlite/shell.c:12818
FunctionexpertEof
** 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
FunctionexpertFilter
** Virtual table module xFilter method. */
src/sqlite/shell.c:12981
FunctionexpertOpen
** Virtual table module xOpen method. */
src/sqlite/shell.c:12907
FunctionexpertRowid
** Virtual table module xRowid method. */
src/sqlite/shell.c:12959
FunctionexpertUpdate
src/sqlite/shell.c:12891
Methodexport_to_buffer
src/gdsqlite.cpp:1059
Methodexport_to_json
src/gdsqlite.cpp:920
Functionfaultsim_callback
** This is the fault-sim callback */
src/sqlite/shell.c:28527
Functionfiddle_db_arg
Only for emcc experimentation purposes. */
src/sqlite/shell.c:33782
Functionfiddle_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
Functionfiddle_db_handle
** Returns a pointer to the current DB handle. */
src/sqlite/shell.c:33763
Functionfiddle_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
Functionfiddle_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
Functionfiddle_experiment
Only for emcc experimentation purposes. */
src/sqlite/shell.c:33756
Functionfiddle_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
Functionfiddle_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
Functionfiddle_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
MethodfileControl
** No xFileControl() verbs are implemented by this VFS. */
src/vfs/gdsqlite_file.cpp:112
MethodfileSize
** Write the size of the file in bytes to *pSize. */
src/vfs/gdsqlite_file.cpp:83
Functionfileio_chmod
src/sqlite/shell.c:7586
Functionfileio_mkdir
src/sqlite/shell.c:7603
FunctionfsdirBestIndex
** 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
FunctionfsdirClose
** Destructor for an fsdir_cursor. */
src/sqlite/shell.c:8168
FunctionfsdirColumn
** Return values of columns for the row at which the series_cursor ** is currently pointing. */
src/sqlite/shell.c:8255
FunctionfsdirConnect
** Construct a new fsdir virtual table object. */
src/sqlite/shell.c:8097
FunctionfsdirDisconnect
** This method is the destructor for fsdir vtab objects. */
src/sqlite/shell.c:8124
FunctionfsdirEof
** Return TRUE if the cursor has been moved off of the last ** row of output. */
src/sqlite/shell.c:8334
FunctionfsdirFilter
** xFilter callback. ** ** idxNum bit Meaning ** 0x01 PATH=N ** 0x02 DIR=N ** 0x04 LEVEL<N ** 0x08
src/sqlite/shell.c:8348
FunctionfsdirNext
** Advance an fsdir_cursor to its next row of output. */
src/sqlite/shell.c:8191
FunctionfsdirOpen
** Constructor for a new fsdir_cursor object. */
src/sqlite/shell.c:8132
FunctionfsdirRowid
** 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
Functionfunction_callback
src/gdsqlite.cpp:778
Methodgdsqlite_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
Functiongdsqlite_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
Functiongdsqlite_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
Functiongdsqlite_vfs_currentTimeInt64
src/vfs/gdsqlite_vfs.cpp:215
← previousnext →501–600 of 809, ranked by callers