/external/chromium_org/third_party/sqlite/src/src/ |
table.c | 33 int nRow; /* Number of rows in the result */ 35 int nData; /* Slots used in azResult[]. (nRow+1)*nColumn */ 53 if( p->nRow==0 && argv!=0 ){ 69 if( p->nRow==0 ){ 99 p->nRow++; 134 res.nRow = 0; 177 if( pnRow ) *pnRow = res.nRow;
|
where.c | [all...] |
vdbeaux.c | [all...] |
test1.c | 584 int nRow, nCol; 604 rc = sqlite3_get_table(db, zSql, &aResult, &nRow, &nCol, &zErr); 605 resCount = (nRow+1)*nCol; 612 sprintf(zBuf, "%d", nRow); [all...] |
sqliteInt.h | [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
speedtest16.c | 82 int nRow = 0; 84 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; } 88 rc, nRow, iElapse);
|
speedtest8inst1.c | 55 int nRow = 0; 60 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; }
|
speedtest8.c | 74 int nRow = 0; 76 while( (rc=sqlite3_step(pStmt))==SQLITE_ROW ){ nRow++; } 81 rc, nRow, iElapse);
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree_util.tcl | 94 set nRow [$db one "SELECT count(*) FROM ${zTab}"] 101 if {$nRow != $nRowid} {
|
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest3.c | [all...] |
tester.tcl | 431 set nRow 0 432 db eval $sql {incr nRow} 433 uplevel do_test ${prefix}.$tn [list [list set {} $nRow]] [list $res] [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |