Lines Matching refs:zType
1030 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); in tclSqlFunc() local
1031 char c = zType[0]; in tclSqlFunc()
1035 if( c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0 ){ in tclSqlFunc()
1039 }else if( (c=='b' && strcmp(zType,"boolean")==0) in tclSqlFunc()
1040 || (c=='w' && strcmp(zType,"wideInt")==0) in tclSqlFunc()
1041 || (c=='i' && strcmp(zType,"int")==0) in tclSqlFunc()
1044 }else if( c=='d' && strcmp(zType,"double")==0 ){ in tclSqlFunc()
1441 const char *zType = (pVar->typePtr ? pVar->typePtr->name : ""); in dbPrepareAndBind() local
1442 c = zType[0]; in dbPrepareAndBind()
1444 (c=='b' && strcmp(zType,"bytearray")==0 && pVar->bytes==0) ){ in dbPrepareAndBind()
1452 }else if( c=='b' && strcmp(zType,"boolean")==0 ){ in dbPrepareAndBind()
1455 }else if( c=='d' && strcmp(zType,"double")==0 ){ in dbPrepareAndBind()
1459 }else if( (c=='w' && strcmp(zType,"wideInt")==0) || in dbPrepareAndBind()
1460 (c=='i' && strcmp(zType,"int")==0) ){ in dbPrepareAndBind()