Searched refs:zCol (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12-stable/contrib/sqlite3/ |
| D | shell.c | 1281 const char *zCol = (const char*)sqlite3_column_text(pStmt, 1); in shellFakeSchema() local 1285 if( zCol==0 ) zCol = ""; in shellFakeSchema() 1286 cQuote = quoteChar(zCol); in shellFakeSchema() 1287 appendText(&s, zCol, cQuote); in shellFakeSchema() 11827 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local 11829 if( zCol==0 ){ in idxGetTableInfo() 11833 nByte += 1 + STRLEN(zCol); in idxGetTableInfo() 11835 db, "main", zTab, zCol, 0, &zColSeq, 0, 0, 0 in idxGetTableInfo() 11857 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local 11860 if( zCol==0 ) continue; in idxGetTableInfo() [all …]
|
| D | sqlite3.c | 18355 char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */ member 20920 SQLITE_PRIVATE int sqlite3ColumnIndex(Table *pTab, const char *zCol); 105799 const char *zCol, 105822 if( zCol ){ 105823 if( eEName==ENAME_TAB && sqlite3StrICmp(zSpan, zCol)!=0 ) return 0; 105824 if( eEName==ENAME_ROWID && sqlite3IsRowid(zCol)==0 ) return 0; 105953 const char *zCol, /* Name of the column. */ 105972 assert( zCol ); /* The Z in X.Y.Z cannot be NULL */ 106037 if( !sqlite3MatchEName(&pEList->a[j], zCol, zTab, zDb, &bRowid) ){ 106043 || sqlite3IdListIndex(pItem->u3.pUsing, zCol)<0 [all …]
|
| /freebsd-12-stable/crypto/heimdal/lib/sqlite/ |
| D | sqlite3.c | 10007 char *zCol; /* Name of column in zTo. If 0 use PRIMARY KEY */ member 71932 const char *zCol, /* Name of the column. */ 71947 assert( zCol ); /* The Z in X.Y.Z cannot be NULL */ 71991 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ 72012 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){ 72048 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){ 72055 if( iCol>=pTab->nCol && sqlite3IsRowid(zCol) ){ 72082 if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){ 72103 if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){ 72154 sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol); [all …]
|