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()
15480 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local
15482 if( zCol==0 ){ in idxGetTableInfo()
15486 nByte += 1 + STRLEN(zCol); in idxGetTableInfo()
15488 db, "main", zTab, zCol, 0, &zColSeq, 0, 0, 0 in idxGetTableInfo()
15510 const char *zCol = (const char*)sqlite3_column_text(p1, 1); in idxGetTableInfo() local
15513 if( zCol==0 ) continue; in idxGetTableInfo()
15514 nCopy = STRLEN(zCol) + 1; in idxGetTableInfo()
15517 memcpy(pCsr, zCol, nCopy); in idxGetTableInfo()
[all …]
H A Dsqlite3.c19613 char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */ member
22299 SQLITE_PRIVATE int sqlite3ColumnIndex(Table *pTab, const char *zCol);
110610 const char *zCol, argument
110633 if( zCol ){
110634 if( eEName==ENAME_TAB && sqlite3StrICmp(zSpan, zCol)!=0 ) return 0;
110635 if( eEName==ENAME_ROWID && sqlite3IsRowid(zCol)==0 ) return 0;
110781 const char *zCol = pRight->u.zToken; local
110784 assert( zCol ); /* The Z in X.Y.Z cannot be NULL */
110852 if( !sqlite3MatchEName(&pEList->a[j], zCol, zTab, zDb, &bRowid) ){
110858 || sqlite3IdListIndex(pItem->u3.pUsing, zCol)<0
[all …]