Home
last modified time | relevance | path

Searched refs:zType (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1014 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); in tclSqlFunc() local
1015 char c = zType[0]; in tclSqlFunc()
1023 }else if( (c=='b' && strcmp(zType,"boolean")==0) in tclSqlFunc()
1024 || (c=='w' && strcmp(zType,"wideInt")==0) in tclSqlFunc()
1025 || (c=='i' && strcmp(zType,"int")==0) in tclSqlFunc()
1028 }else if( c=='d' && strcmp(zType,"double")==0 ){ in tclSqlFunc()
1425 c = zType[0]; in dbPrepareAndBind()
1435 }else if( c=='b' && strcmp(zType,"boolean")==0 ){ in dbPrepareAndBind()
1438 }else if( c=='d' && strcmp(zType,"double")==0 ){ in dbPrepareAndBind()
1442 }else if( (c=='w' && strcmp(zType,"wideInt")==0) || in dbPrepareAndBind()
[all …]
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c21648 zType in logBadConnection()
78763 pFix->zType = zType;
80305 zType = pTab->aCol[iCol].zType;
80307 if( zType && sqlite3StrICmp(zType, "INTEGER")==0
80731 zType,
90849 pCol->zType ? pCol->zType : "", 0);
93431 zType = pTab->aCol[iCol].zType;
99785 char *zType = pTab->aCol[iCol].zType;
99790 if( sqlite3StrNICmp("hidden", zType, 6)||(zType[6] && zType[6]!=' ') ){
99793 && (zType[i+7]=='\0' || zType[i+7]==' ')
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c32433 zType
96554 pCur->zType = 0;
106011 if( zType ){
109603 pFix->zType = zType;
111274 char *zType;
112516 zType,
130621 return zType;
130920 if( zType ){
139436 && (zType[i+6]=='\0' || zType[i+6]==' ')
139445 zType[j] = zType[j+nDel];
[all …]
H A Dshell.c8208 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema() local
8212 if( zType[0]=='v' || zType[1]=='r' ){ in idxCreateVtabSchema()
12053 const char *zType; in dump_callback() local
12060 zType = azArg[1]; in dump_callback()
12086 if( strcmp(zType, "table")==0 ){ in dump_callback()
15278 const char *zType = (const char*)sqlite3_column_text(pStmt, 0); in recoverFindTable() local
15279 if( bIntkey==0 && sqlite3_stricmp(zType, "index")==0 ){ in recoverFindTable()
15283 if( sqlite3_stricmp(zType, "table")==0 ){ in recoverFindTable()