Searched refs:pInsert (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 18877 sqlite3_stmt *pInsert; member 18904 sqlite3_stmt *pInsert; /* INSERT INTO lost_and_found ... */ member 20240 sqlite3_stmt *pInsert = pLaf->pInsert; in recoverLostAndFoundOnePage() local 20257 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */ in recoverLostAndFoundOnePage() 20258 sqlite3_bind_int64(pInsert, 2, iPage); /* pgno */ in recoverLostAndFoundOnePage() 20259 sqlite3_bind_int(pInsert, 3, nVal); /* nfield */ in recoverLostAndFoundOnePage() 20261 sqlite3_bind_int64(pInsert, 4, iRowid); /* id */ in recoverLostAndFoundOnePage() 20264 recoverBindValue(p, pInsert, 5+ii, apVal[ii]); in recoverLostAndFoundOnePage() 20266 if( sqlite3_step(pInsert)==SQLITE_ROW ){ in recoverLostAndFoundOnePage() 20267 recoverSqlCallback(p, (const char*)sqlite3_column_text(pInsert, 0)); in recoverLostAndFoundOnePage() [all …]
|
| H A D | sqlite3.c | 216349 RtreeNode *pInsert; 216356 rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert); 216359 rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode); 216360 rc2 = nodeRelease(pRtree, pInsert); 221562 sqlite3_stmt *pInsert; /* Statement for INSERT operations */ 222116 sqlite3_finalize(pIter->pInsert); 222130 pIter->pInsert = 0; 223662 p->dbMain, &pIter->pInsert, &p->zErrmsg, 223753 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz, 224678 pWriter = pIter->pInsert; [all …]
|