Lines Matching refs:sqlite3_stmt
71 sqlite3_stmt *stmt; /* For callback() */
795 sqlite3_finalize((sqlite3_stmt *) v->vm);
804 sqlite3_finalize((sqlite3_stmt *) v->vm);
2483 sqlite3_finalize((sqlite3_stmt *) v->vm);
2492 sqlite3_finalize((sqlite3_stmt *) v->vm);
2530 sqlite3_finalize((sqlite3_stmt *) v->vm);
2634 ret = sqlite3_step((sqlite3_stmt *) v->vm);
2636 ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
2654 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2658 ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
2676 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2677 if (sqlite3_column_type((sqlite3_stmt *) v->vm, i)
2680 sqlite3_column_blob((sqlite3_stmt *) v->vm, i);
2682 sqlite3_column_bytes((sqlite3_stmt *) v->vm,
2704 sqlite3_column_text((sqlite3_stmt *) v->vm, i);
2721 ret = sqlite3_step((sqlite3_stmt *) v->vm);
2723 ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
2741 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2745 ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
2762 cols[i] = sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2763 if (sqlite3_column_type((sqlite3_stmt *) v->vm, i)
2766 sqlite3_column_blob((sqlite3_stmt *) v->vm, i);
2768 sqlite3_column_bytes((sqlite3_stmt *) v->vm, i);
2789 sqlite3_column_text((sqlite3_stmt *) v->vm, i);
2801 v->hh.stmt = (sqlite3_stmt *) v->vm;
2805 v->hh.stmt = (sqlite3_stmt *) v->vm;
2827 v->hh.stmt = (sqlite3_stmt *) v->vm;
2831 v->hh.stmt = (sqlite3_stmt *) v->vm;
2847 sqlite3_finalize((sqlite3_stmt *) v->vm);
2856 sqlite3_finalize((sqlite3_stmt *) v->vm);
2864 sqlite3_finalize((sqlite3_stmt *) v->vm);
2873 sqlite3_finalize((sqlite3_stmt *) v->vm);
2904 sqlite3_finalize((sqlite3_stmt *) v->vm);
2913 sqlite3_finalize((sqlite3_stmt *) v->vm);
2927 (sqlite3_stmt **) &svm, &tail);
2930 (sqlite3_stmt **) &svm, &tail);
2934 sqlite3_finalize((sqlite3_stmt *) svm);
2965 v->tail, -1, (sqlite3_stmt **) &svm, &tail);
2968 v->tail, -1, (sqlite3_stmt **) &svm, &tail);
2972 sqlite3_finalize((sqlite3_stmt *) svm);
3052 (sqlite3_stmt **) &svm, &tail);
3055 (sqlite3_stmt **) &svm, &tail);
3059 sqlite3_finalize((sqlite3_stmt *) svm);
3089 (sqlite3_stmt **) &svm, &tail);
3092 (sqlite3_stmt **) &svm, &tail);
3096 sqlite3_finalize((sqlite3_stmt *) svm);
3128 sqlite3_finalize((sqlite3_stmt *) svm);
3137 sqlite3_finalize((sqlite3_stmt *) svm);
3306 (sqlite3_stmt **) &svm, &tail);
3309 (sqlite3_stmt **) &svm, &tail);
3313 sqlite3_finalize((sqlite3_stmt *) svm);
3343 sqlite3_finalize((sqlite3_stmt *) svm);
3487 sqlite3_finalize((sqlite3_stmt *) v->vm);
3497 v->tail, -1, (sqlite3_stmt **) &svm,
3501 v->tail, -1, (sqlite3_stmt **) &svm,
3506 sqlite3_finalize((sqlite3_stmt *) svm);
3573 (sqlite3_stmt **) &svm, (const void **) &tail);
3576 (sqlite3_stmt **) &svm, (const void **) &tail);
3580 sqlite3_finalize((sqlite3_stmt *) svm);
3603 sqlite3_finalize((sqlite3_stmt *) svm);
3645 ret = sqlite3_step((sqlite3_stmt *) v->vm);
3673 ret = sqlite3_finalize((sqlite3_stmt *) v->vm);
3697 sqlite3_reset((sqlite3_stmt *) v->vm);
3713 sqlite3_clear_bindings((sqlite3_stmt *) v->vm);
3729 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3736 ret = sqlite3_bind_int((sqlite3_stmt *) v->vm, pos, val);
3756 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3763 ret = sqlite3_bind_int64((sqlite3_stmt *) v->vm, pos, val);
3783 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3790 ret = sqlite3_bind_double((sqlite3_stmt *) v->vm, pos, val);
3810 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3828 ret = sqlite3_bind_blob((sqlite3_stmt *) v->vm,
3831 ret = sqlite3_bind_blob((sqlite3_stmt *) v->vm,
3835 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3860 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3888 ret = sqlite3_bind_text16((sqlite3_stmt *) v->vm,
3891 ret = sqlite3_bind_text16((sqlite3_stmt *) v->vm, pos, "", 0,
3895 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3919 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3926 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3946 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3953 ret = sqlite3_bind_zeroblob((sqlite3_stmt *) v->vm, pos, len);
3973 return sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3989 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3996 name = sqlite3_bind_parameter_name((sqlite3_stmt *) v->vm, pos);
4028 pos = sqlite3_bind_parameter_index((sqlite3_stmt *) v->vm, n);
4047 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4053 return sqlite3_column_int((sqlite3_stmt *) v->vm, col);
4069 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4075 return sqlite3_column_int64((sqlite3_stmt *) v->vm, col);
4091 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4097 return sqlite3_column_double((sqlite3_stmt *) v->vm, col);
4113 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4122 data = sqlite3_column_blob((sqlite3_stmt *) v->vm, col);
4124 nbytes = sqlite3_column_bytes((sqlite3_stmt *) v->vm, col);
4150 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4159 data = sqlite3_column_text16((sqlite3_stmt *) v->vm, col);
4161 nbytes = sqlite3_column_bytes16((sqlite3_stmt *) v->vm, col);
4187 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4193 return sqlite3_column_type((sqlite3_stmt *) v->vm, col);
4209 return sqlite3_column_count((sqlite3_stmt *) v->vm);
4225 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4232 str = sqlite3_column_table_name16((sqlite3_stmt *) v->vm, col);
4252 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4259 str = sqlite3_column_database_name16((sqlite3_stmt *) v->vm, col);
4279 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4286 str = sqlite3_column_decltype16((sqlite3_stmt *) v->vm, col);
4306 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4313 str = sqlite3_column_origin_name16((sqlite3_stmt *) v->vm, col);
4334 count = sqlite3_stmt_status((sqlite3_stmt *) v->vm, op,