Lines Matching refs:zVar
24081 const char *zVar = sqlite3_bind_parameter_name(pStmt, i); in bind_prepared_stmt() local
24082 if( zVar==0 ){ in bind_prepared_stmt()
24084 zVar = zNum; in bind_prepared_stmt()
24086 sqlite3_bind_text(pQ, 1, zVar, -1, SQLITE_STATIC); in bind_prepared_stmt()
24090 }else if( sqlite3_strlike("_NAN", zVar, 0)==0 ){ in bind_prepared_stmt()
24094 }else if( sqlite3_strlike("_INF", zVar, 0)==0 ){ in bind_prepared_stmt()
24097 }else if( strncmp(zVar, "$int_", 5)==0 ){ in bind_prepared_stmt()
24098 sqlite3_bind_int(pStmt, i, atoi(&zVar[5])); in bind_prepared_stmt()
24099 }else if( strncmp(zVar, "$text_", 6)==0 ){ in bind_prepared_stmt()
24100 size_t szVar = strlen(zVar); in bind_prepared_stmt()
24103 memcpy(zBuf, &zVar[6], szVar-5); in bind_prepared_stmt()