Lines Matching refs:col
5200 int col; in test_column_type() local
5210 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_column_type()
5212 tp = sqlite3_column_type(pStmt, col); in test_column_type()
5249 int col; in test_column_int64() local
5259 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_column_int64()
5261 iVal = sqlite3_column_int64(pStmt, col); in test_column_int64()
5276 int col; in test_column_blob() local
5288 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_column_blob()
5290 len = sqlite3_column_bytes(pStmt, col); in test_column_blob()
5291 pBlob = sqlite3_column_blob(pStmt, col); in test_column_blob()
5308 int col; in test_column_double() local
5318 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_column_double()
5320 rVal = sqlite3_column_double(pStmt, col); in test_column_double()
5364 int col; in test_stmt_utf8() local
5376 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_stmt_utf8()
5377 zRet = xFunc(pStmt, col); in test_stmt_utf8()
5417 int col; in test_stmt_utf16() local
5430 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_stmt_utf16()
5432 zName16 = xFunc(pStmt, col); in test_stmt_utf16()
5460 int col; in test_stmt_int() local
5471 if( Tcl_GetIntFromObj(interp, objv[2], &col) ) return TCL_ERROR; in test_stmt_int()
5473 Tcl_SetObjResult(interp, Tcl_NewIntObj(xFunc(pStmt, col))); in test_stmt_int()