Searched refs:zType (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 1035 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); in tclSqlFunc() local 1036 char c = zType[0]; in tclSqlFunc() 1044 }else if( (c=='b' && strcmp(zType,"boolean")==0) in tclSqlFunc() 1045 || (c=='w' && strcmp(zType,"wideInt")==0) in tclSqlFunc() 1046 || (c=='i' && strcmp(zType,"int")==0) in tclSqlFunc() 1049 }else if( c=='d' && strcmp(zType,"double")==0 ){ in tclSqlFunc() 1447 c = zType[0]; in dbPrepareAndBind() 1457 }else if( c=='b' && strcmp(zType,"boolean")==0 ){ in dbPrepareAndBind() 1460 }else if( c=='d' && strcmp(zType,"double")==0 ){ in dbPrepareAndBind() 1464 }else if( (c=='w' && strcmp(zType,"wideInt")==0) || in dbPrepareAndBind() [all …]
|
| /freebsd-13.1/contrib/sqlite3/ |
| H A D | sqlite3.c | 33410 zType 108563 if( zType ){ 112672 pFix->zType = zType; 114532 char *zType; 115910 zType, 130784 zType, 135158 return zType; 135461 if( zType ){ 145130 && (zType[i+6]=='\0' || zType[i+6]==' ') 145139 zType[j] = zType[j+nDel]; [all …]
|
| H A D | shell.c | 10642 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema() local 10646 if( zType[0]=='v' || zType[1]=='r' ){ in idxCreateVtabSchema() 14861 const char *zType; in dump_callback() local 14870 zType = azArg[1]; in dump_callback() 14900 if( strcmp(zType, "table")==0 ){ in dump_callback() 18202 const char *zType = (const char*)sqlite3_column_text(pStmt, 0); in recoverFindTable() local 18203 if( bIntkey==0 && sqlite3_stricmp(zType, "index")==0 ){ in recoverFindTable() 18207 if( sqlite3_stricmp(zType, "table")==0 ){ in recoverFindTable()
|