Lines Matching defs:SQLITE_OK

291 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
312 ** [sqlite3_backup] objects then it returns [SQLITE_OK] and the deallocation
418 #define SQLITE_OK 0 /* Successful result */
527 #define SQLITE_OK_LOAD_PERMANENTLY (SQLITE_OK | (1<<8))
942 ** file control returns [SQLITE_OK], then the parser assumes that the
947 ** any result code other than [SQLITE_OK] or [SQLITE_NOTFOUND], that means
1027 ** If the [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] opcode returns SQLITE_OK, then
1043 ** This file control returns [SQLITE_OK] if and only if the writes were
1414 ** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success.
1417 ** as a mutex) it returns an [error code] other than [SQLITE_OK].
1454 ** must return [SQLITE_OK] on success and some other [error code] upon
1489 ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
1509 ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if
2733 ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
2737 ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
2741 ** When the callback returns [SQLITE_OK], that means the operation
2760 ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
2818 ** return either [SQLITE_OK] or one of these two constants in order
3060 ** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The
3559 ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
3871 ** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an
4413 ** SQLITE_OK. ^If the most recent evaluation of statement S failed, then
4450 ** then [sqlite3_reset(S)] returns [SQLITE_OK].
5542 ** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled
5663 ** interface returns SQLITE_OK and fills in the non-NULL pointers in
5669 ** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it
5757 ** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong.
6253 ** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is stored
6404 ** ^(On success, sqlite3_blob_read() returns SQLITE_OK.
6424 ** ^(On success, sqlite3_blob_write() returns SQLITE_OK.
6580 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
6672 ** called, but only if the prior call to xMutexInit returned SQLITE_OK.
6870 ** SQLITE_OK on success and a non-zero [error code] on failure.
6999 ** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a
7496 ** are still more pages to be copied, then the function returns [SQLITE_OK].
7500 ** then an [error code] is returned. ^As well as [SQLITE_OK] and
7559 ** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no
7681 ** returns SQLITE_OK.
7842 ** The callback function should normally return [SQLITE_OK]. ^If an error
7993 ** databases, SQLITE_OK is returned.
7996 ** mode, SQLITE_OK is returned and both *pnLog and *pnCkpt set to -1. ^If
8080 ** return SQLITE_OK. Or, if this is not possible, it may return
8245 ** ^Otherwise, if no error occurs, [sqlite3_db_cacheflush()] returns SQLITE_OK.
8404 ** created [sqlite3_snapshot] object into *P and returns SQLITE_OK.
8454 ** ^The [sqlite3_snapshot_open()] interface returns SQLITE_OK on success
8541 ** SQLITE_OK is returned if successful, or an SQLite error code otherwise.
8704 ** a pointer to the new object is written to *ppSession and SQLITE_OK is
8824 ** SQLITE_OK is returned if the call completes without error. Or, if an error
8857 ** SQLITE_OK. If an error occurs, set both *ppChangeset and *pnChangeset to
9010 ** If the operation successful, SQLITE_OK is returned. Otherwise, an SQLite
9079 ** If successful, *pp is set to point to the iterator handle and SQLITE_OK
9161 ** If no error occurs, SQLITE_OK is returned. If an error does occur, an
9195 ** SQLITE_OK is returned and the output variables populated as described
9222 ** returns SQLITE_OK. The name of the function comes from the fact that this
9252 ** returns SQLITE_OK. If the change is an UPDATE and does not include
9254 ** SQLITE_OK returned. The name of the function comes from the fact that
9283 ** and returns SQLITE_OK.
9300 ** violations in the destination database and returns SQLITE_OK.
9325 ** to that error is returned by this function. Otherwise, SQLITE_OK is
9333 ** if( rc!=SQLITE_OK ){
9357 ** SQLITE_OK is returned. If an error occurs, both *pnOut and *ppOut are
9385 ** if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nA, pA);
9386 ** if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nB, pB);
9387 ** if( rc==SQLITE_OK ){
9419 ** If successful, this function returns SQLITE_OK and populates (*pp) with
9521 ** If no error occurs, SQLITE_OK is returned.
9543 ** variables (*pnData) and (*ppData) are set to 0. Otherwise, SQLITE_OK
9860 ** before returning SQLITE_OK. If the input is completely exhausted, (*pnData)
9894 ** supplied data, it should return SQLITE_OK to indicate success. Otherwise,
10060 ** (not characters) of the buffer and SQLITE_OK is returned. Otherwise,
10073 ** the query within the current row. Return SQLITE_OK if successful, or
10093 ** Returns SQLITE_OK if successful, or an error code (i.e. SQLITE_NOMEM)
10120 ** If the callback function returns any value other than SQLITE_OK, the
10122 ** If the returned value is SQLITE_DONE, xQueryPhrase returns SQLITE_OK.
10125 ** If the query runs to completion without incident, SQLITE_OK is returned.
10299 ** should be set to point to the new tokenizer handle and SQLITE_OK
10300 ** returned. If an error occurs, some value other than SQLITE_OK should
10354 ** If an xToken() callback returns any value other than SQLITE_OK, then
10357 ** input buffer is exhausted, xTokenize() should return SQLITE_OK. Finally,
10360 ** SQLITE_OK or SQLITE_DONE.