Searched refs:sqlite_step (Results 1 – 8 of 8) sorted by relevance
/PHP-5.3/ext/sqlite/ |
H A D | php_sqlite.def | 36 sqlite_step
|
H A D | sess_sqlite.c | 109 switch ((result = sqlite_step(vm, &colcount, &rowdata, &colnames))) { in PS_READ_FUNC()
|
H A D | pdo_sqlite2.c | 102 S->einfo.errcode = sqlite_step(S->vm, &S->ncols, &S->rowdata, &S->colnames); in pdo_sqlite2_stmt_execute() 151 S->einfo.errcode = sqlite_step(S->vm, &S->ncols, &S->rowdata, &S->colnames); in pdo_sqlite2_stmt_fetch()
|
H A D | sqlite.c | 1787 ret = sqlite_step(rres->vm, &rres->ncolumns, &rowdata, &colnames); in php_sqlite_fetch() 2035 sqlite_step(res.vm, &ncols, &rowdata, &colnames); in PHP_FUNCTION()
|
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | sqlite.w32.h | 663 int sqlite_step(
|
H A D | sqlite.h.in | 146 ** Return values for sqlite_exec() and sqlite_step() 175 #define SQLITE_ROW 100 /* sqlite_step() has another row ready */ 176 #define SQLITE_DONE 101 /* sqlite_step() has finished executing */ 680 ** error. sqlite_step() should not be called again for the same 687 ** can try again to open the database by calling sqlite_step() again. 697 ** Invoke sqlite_step() again to advance to the next row. 699 ** SQLITE_MISUSE is returned if sqlite_step() is called incorrectly. 700 ** For example, if you call sqlite_step() after the virtual machine 702 ** or if you call sqlite_step() with an incorrectly initialized virtual 706 int sqlite_step( [all …]
|
H A D | main.c | 654 rc = sqlite_step(pVm, &nArg, (const char***)&azArg,(const char***)&azCol); in sqlite_exec()
|
H A D | vdbe.c | 107 int sqlite_step( in sqlite_step() function
|
Completed in 31 milliseconds