Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dsqlite3.c83088 sqlite3* pDestDb; /* Destination database handle */ member
83207 sqlite3* pDestDb, /* Database to write to */
83215 if( !sqlite3SafetyCheckOk(pSrcDb)||!sqlite3SafetyCheckOk(pDestDb) ){
83230 sqlite3_mutex_enter(pDestDb->mutex);
83232 if( pSrcDb==pDestDb ){
83234 pDestDb, SQLITE_ERROR, "source and destination must be distinct"
83244 sqlite3Error(pDestDb, SQLITE_NOMEM_BKPT);
83250 p->pSrc = findBtree(pDestDb, pSrcDb, zSrcDb);
83251 p->pDest = findBtree(pDestDb, pDestDb, zDestDb);
83252 p->pDestDb = pDestDb;
[all …]