Searched refs:pInsert (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 16627 sqlite3_stmt *pInsert; member 16654 sqlite3_stmt *pInsert; /* INSERT INTO lost_and_found ... */ member 17990 sqlite3_stmt *pInsert = pLaf->pInsert; in recoverLostAndFoundOnePage() local 18007 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */ in recoverLostAndFoundOnePage() 18008 sqlite3_bind_int64(pInsert, 2, iPage); /* pgno */ in recoverLostAndFoundOnePage() 18009 sqlite3_bind_int(pInsert, 3, nVal); /* nfield */ in recoverLostAndFoundOnePage() 18011 sqlite3_bind_int64(pInsert, 4, iRowid); /* id */ in recoverLostAndFoundOnePage() 18014 recoverBindValue(p, pInsert, 5+ii, apVal[ii]); in recoverLostAndFoundOnePage() 18016 if( sqlite3_step(pInsert)==SQLITE_ROW ){ in recoverLostAndFoundOnePage() 18017 recoverSqlCallback(p, (const char*)sqlite3_column_text(pInsert, 0)); in recoverLostAndFoundOnePage() [all …]
|
H A D | sqlite3.c | 213193 RtreeNode *pInsert; 213200 rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert); 213203 rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode); 213204 rc2 = nodeRelease(pRtree, pInsert); 218407 sqlite3_stmt *pInsert; /* Statement for INSERT operations */ 218939 sqlite3_finalize(pIter->pInsert); 218953 pIter->pInsert = 0; 220485 p->dbMain, &pIter->pInsert, &p->zErrmsg, 220576 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz, 221499 pWriter = pIter->pInsert; [all …]
|