Searched refs:pSql (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 1572 Tcl_Obj *pSql; /* Object holding string zSql */ member 1614 Tcl_Obj *pSql, /* Object containing SQL script */ in dbEvalInit() argument 1620 p->zSql = Tcl_GetString(pSql); in dbEvalInit() 1621 p->pSql = pSql; in dbEvalInit() 1622 Tcl_IncrRefCount(pSql); in dbEvalInit() 1767 Tcl_DecrRefCount(p->pSql); in dbEvalFinalize()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 13868 sqlite3_stmt *pSql = 0; in sqlite3_expert_new() local 13869 rc = idxPrintfPrepareStmt(pNew->db, &pSql, pzErrmsg, in sqlite3_expert_new() 13873 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSql) ){ in sqlite3_expert_new() 13874 const char *zSql = (const char*)sqlite3_column_text(pSql, 0); in sqlite3_expert_new() 13877 idxFinalize(&rc, pSql); in sqlite3_expert_new() 21455 static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){ in explain_data_prepare() argument 21470 assert( sqlite3_column_count(pSql)>=4 ); in explain_data_prepare() 21471 assert( 0==sqlite3_stricmp( sqlite3_column_name(pSql, 0), "addr" ) ); in explain_data_prepare() 21472 assert( 0==sqlite3_stricmp( sqlite3_column_name(pSql, 1), "opcode" ) ); in explain_data_prepare() 21473 assert( 0==sqlite3_stricmp( sqlite3_column_name(pSql, 2), "p1" ) ); in explain_data_prepare() [all …]
|
H A D | sqlite3.c | 213923 sqlite3_str *pSql; 213970 pSql = sqlite3_str_new(db); 213971 sqlite3_str_appendf(pSql, "CREATE TABLE x(%.*s INT", 213977 sqlite3_str_appendf(pSql, ",%.*s", rtreeTokenLength(zArg+1), zArg+1); 213983 sqlite3_str_appendf(pSql, azFormat[eCoordType], 213987 sqlite3_str_appendf(pSql, ");"); 213988 zSql = sqlite3_str_finish(pSql); 215850 sqlite3_str *pSql; 215884 pSql = sqlite3_str_new(db); 215885 sqlite3_str_appendf(pSql, "CREATE TABLE x(_shape"); [all …]
|