Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dattach.c335 Expr *pDbname, /* Name of the database to use internally */ in codeAttach() argument
350 SQLITE_OK!=resolveAttachExpr(&sName, pDbname) || in codeAttach()
376 sqlite3ExprCode(pParse, pDbname, regArgs+1); in codeAttach()
392 sqlite3ExprDelete(db, pDbname); in codeAttach()
401 void sqlite3Detach(Parse *pParse, Expr *pDbname){ in sqlite3Detach() argument
413 codeAttach(pParse, SQLITE_DETACH, &detach_func, pDbname, 0, 0, pDbname); in sqlite3Detach()
421 void sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey){ in sqlite3Attach() argument
433 codeAttach(pParse, SQLITE_ATTACH, &attach_func, p, p, pDbname, pKey); in sqlite3Attach()