Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c3275 const char *zCol = sqlite3_column_name(p->pStmt, aMap[i]); in qrfExplain() local
3276 qrfWidthPrint(p,p->pOut, aWidth[i], zCol); in qrfExplain()
15442 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local
15444 if( zCol==0 ){ in idxGetTableInfo()
15448 nByte += 1 + STRLEN(zCol); in idxGetTableInfo()
15450 db, "main", zTab, zCol, 0, &zColSeq, 0, 0, 0 in idxGetTableInfo()
15472 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local
15475 if( zCol==0 ) continue; in idxGetTableInfo()
15476 nCopy = STRLEN(zCol) + 1; in idxGetTableInfo()
15479 memcpy(pCsr, zCol, nCopy); in idxGetTableInfo()
[all …]
H A Dsqlite3.c19592 char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */ member
22277 SQLITE_PRIVATE int sqlite3ColumnIndex(Table *pTab, const char *zCol);
110452 const char *zCol, argument
110475 if( zCol ){
110476 if( eEName==ENAME_TAB && sqlite3StrICmp(zSpan, zCol)!=0 ) return 0;
110477 if( eEName==ENAME_ROWID && sqlite3IsRowid(zCol)==0 ) return 0;
110623 const char *zCol = pRight->u.zToken; local
110626 assert( zCol ); /* The Z in X.Y.Z cannot be NULL */
110694 if( !sqlite3MatchEName(&pEList->a[j], zCol, zTab, zDb, &bRowid) ){
110700 || sqlite3IdListIndex(pItem->u3.pUsing, zCol)<0
[all …]