Lines Matching refs:zCol
917 const char *zCol = (const char*)sqlite3_column_text(pStmt, 1); local
921 if( zCol==0 ) zCol = "";
922 cQuote = quoteChar(zCol);
923 appendText(&s, zCol, cQuote);
7368 * zAutoColumn(zCol, &db, ?) => Maybe init db, add column zCol to it.
7373 * (a) The db was not initialized and zCol==0 (There are no columns.)
7374 * (b) zCol!=0 (Column was added, db initialized as needed.)
8723 const char *zCol = (const char*)sqlite3_column_text(pStmt,2); local
8725 if( zCol==0 ){
8727 zCol = "_ROWID_";
8730 zCol = zLabel;
8737 zCollist = sqlite3_mprintf("\"%w\"", zCol);
8739 zCollist = sqlite3_mprintf("%z,\"%w\"", zCollist, zCol);