Home
last modified time | relevance | path

Searched refs:pBtx (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A DvdbeInt.h92 Btree *pBtx; /* Separate file holding temporary table */ member
H A Dvdbe.c4274 pCx->ub.pBtx = pOrig->ub.pBtx; in sqlite3VdbeExec()
4277 rc = sqlite3BtreeCursor(pCx->ub.pBtx, pCx->pgnoRoot, BTREE_WRCSR, in sqlite3VdbeExec()
4350 rc = sqlite3BtreeClearTable(pCx->ub.pBtx, pCx->pgnoRoot, 0); in sqlite3VdbeExec()
4355 rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pCx->ub.pBtx, in sqlite3VdbeExec()
4359 rc = sqlite3BtreeBeginTrans(pCx->ub.pBtx, 1, 0); in sqlite3VdbeExec()
4368 rc = sqlite3BtreeCreateTable(pCx->ub.pBtx, &pCx->pgnoRoot, in sqlite3VdbeExec()
4374 rc = sqlite3BtreeCursor(pCx->ub.pBtx, pCx->pgnoRoot, BTREE_WRCSR, in sqlite3VdbeExec()
4380 rc = sqlite3BtreeCursor(pCx->ub.pBtx, SCHEMA_ROOT, BTREE_WRCSR, in sqlite3VdbeExec()
4387 sqlite3BtreeClose(pCx->ub.pBtx); in sqlite3VdbeExec()