Searched refs:zCol (Results 1 – 2 of 2) sorted by relevance
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 2005 const char *zCol = (const char*)sqlite3_column_text(pStmt, 1); in shellFakeSchema() local 2009 if( zCol==0 ) zCol = ""; in shellFakeSchema() 2010 cQuote = quoteChar(zCol); in shellFakeSchema() 2011 appendText(&s, zCol, cQuote); in shellFakeSchema() 12551 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local 12553 if( zCol==0 ){ in idxGetTableInfo() 12557 nByte += 1 + STRLEN(zCol); in idxGetTableInfo() 12559 db, "main", zTab, zCol, 0, &zColSeq, 0, 0, 0 in idxGetTableInfo() 12581 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local 12584 if( zCol==0 ) continue; in idxGetTableInfo() [all …]
|
| H A D | sqlite3.c | 18499 char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */ member 21077 SQLITE_PRIVATE int sqlite3ColumnIndex(Table *pTab, const char *zCol); 106309 const char *zCol, 106332 if( zCol ){ 106333 if( eEName==ENAME_TAB && sqlite3StrICmp(zSpan, zCol)!=0 ) return 0; 106334 if( eEName==ENAME_ROWID && sqlite3IsRowid(zCol)==0 ) return 0; 106464 const char *zCol, /* Name of the column. */ 106483 assert( zCol ); /* The Z in X.Y.Z cannot be NULL */ 106548 if( !sqlite3MatchEName(&pEList->a[j], zCol, zTab, zDb, &bRowid) ){ 106554 || sqlite3IdListIndex(pItem->u3.pUsing, zCol)<0 [all …]
|