Lines Matching refs:sqlite3_stmt
72 sqlite3_stmt *stmt; /* For callback() */
796 sqlite3_finalize((sqlite3_stmt *) v->vm);
805 sqlite3_finalize((sqlite3_stmt *) v->vm);
2484 sqlite3_finalize((sqlite3_stmt *) v->vm);
2493 sqlite3_finalize((sqlite3_stmt *) v->vm);
2531 sqlite3_finalize((sqlite3_stmt *) v->vm);
2635 ret = sqlite3_step((sqlite3_stmt *) v->vm);
2637 ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
2655 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2659 ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
2677 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2678 if (sqlite3_column_type((sqlite3_stmt *) v->vm, i)
2681 sqlite3_column_blob((sqlite3_stmt *) v->vm, i);
2683 sqlite3_column_bytes((sqlite3_stmt *) v->vm,
2705 sqlite3_column_text((sqlite3_stmt *) v->vm, i);
2722 ret = sqlite3_step((sqlite3_stmt *) v->vm);
2724 ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
2742 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2746 ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
2763 cols[i] = sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2764 if (sqlite3_column_type((sqlite3_stmt *) v->vm, i)
2767 sqlite3_column_blob((sqlite3_stmt *) v->vm, i);
2769 sqlite3_column_bytes((sqlite3_stmt *) v->vm, i);
2790 sqlite3_column_text((sqlite3_stmt *) v->vm, i);
2802 v->hh.stmt = (sqlite3_stmt *) v->vm;
2806 v->hh.stmt = (sqlite3_stmt *) v->vm;
2828 v->hh.stmt = (sqlite3_stmt *) v->vm;
2832 v->hh.stmt = (sqlite3_stmt *) v->vm;
2848 sqlite3_finalize((sqlite3_stmt *) v->vm);
2857 sqlite3_finalize((sqlite3_stmt *) v->vm);
2865 sqlite3_finalize((sqlite3_stmt *) v->vm);
2874 sqlite3_finalize((sqlite3_stmt *) v->vm);
2905 sqlite3_finalize((sqlite3_stmt *) v->vm);
2914 sqlite3_finalize((sqlite3_stmt *) v->vm);
2928 (sqlite3_stmt **) &svm, &tail);
2931 (sqlite3_stmt **) &svm, &tail);
2935 sqlite3_finalize((sqlite3_stmt *) svm);
2966 v->tail, -1, (sqlite3_stmt **) &svm, &tail);
2969 v->tail, -1, (sqlite3_stmt **) &svm, &tail);
2973 sqlite3_finalize((sqlite3_stmt *) svm);
3053 (sqlite3_stmt **) &svm, &tail);
3056 (sqlite3_stmt **) &svm, &tail);
3060 sqlite3_finalize((sqlite3_stmt *) svm);
3090 (sqlite3_stmt **) &svm, &tail);
3093 (sqlite3_stmt **) &svm, &tail);
3097 sqlite3_finalize((sqlite3_stmt *) svm);
3129 sqlite3_finalize((sqlite3_stmt *) svm);
3138 sqlite3_finalize((sqlite3_stmt *) svm);
3307 (sqlite3_stmt **) &svm, &tail);
3310 (sqlite3_stmt **) &svm, &tail);
3314 sqlite3_finalize((sqlite3_stmt *) svm);
3344 sqlite3_finalize((sqlite3_stmt *) svm);
3488 sqlite3_finalize((sqlite3_stmt *) v->vm);
3498 v->tail, -1, (sqlite3_stmt **) &svm,
3502 v->tail, -1, (sqlite3_stmt **) &svm,
3507 sqlite3_finalize((sqlite3_stmt *) svm);
3574 (sqlite3_stmt **) &svm, (const void **) &tail);
3577 (sqlite3_stmt **) &svm, (const void **) &tail);
3581 sqlite3_finalize((sqlite3_stmt *) svm);
3604 sqlite3_finalize((sqlite3_stmt *) svm);
3646 ret = sqlite3_step((sqlite3_stmt *) v->vm);
3674 ret = sqlite3_finalize((sqlite3_stmt *) v->vm);
3698 sqlite3_reset((sqlite3_stmt *) v->vm);
3714 sqlite3_clear_bindings((sqlite3_stmt *) v->vm);
3730 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3737 ret = sqlite3_bind_int((sqlite3_stmt *) v->vm, pos, val);
3757 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3764 ret = sqlite3_bind_int64((sqlite3_stmt *) v->vm, pos, val);
3784 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3791 ret = sqlite3_bind_double((sqlite3_stmt *) v->vm, pos, val);
3811 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3829 ret = sqlite3_bind_blob((sqlite3_stmt *) v->vm,
3832 ret = sqlite3_bind_blob((sqlite3_stmt *) v->vm,
3836 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3861 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3889 ret = sqlite3_bind_text16((sqlite3_stmt *) v->vm,
3892 ret = sqlite3_bind_text16((sqlite3_stmt *) v->vm, pos, "", 0,
3896 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3920 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3927 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3947 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3954 ret = sqlite3_bind_zeroblob((sqlite3_stmt *) v->vm, pos, len);
3974 return sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3990 int npar = sqlite3_bind_parameter_count((sqlite3_stmt *) v->vm);
3997 name = sqlite3_bind_parameter_name((sqlite3_stmt *) v->vm, pos);
4029 pos = sqlite3_bind_parameter_index((sqlite3_stmt *) v->vm, n);
4048 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4054 return sqlite3_column_int((sqlite3_stmt *) v->vm, col);
4070 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4076 return sqlite3_column_int64((sqlite3_stmt *) v->vm, col);
4092 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4098 return sqlite3_column_double((sqlite3_stmt *) v->vm, col);
4114 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4123 data = sqlite3_column_blob((sqlite3_stmt *) v->vm, col);
4125 nbytes = sqlite3_column_bytes((sqlite3_stmt *) v->vm, col);
4151 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4160 data = sqlite3_column_text16((sqlite3_stmt *) v->vm, col);
4162 nbytes = sqlite3_column_bytes16((sqlite3_stmt *) v->vm, col);
4188 int ncol = sqlite3_data_count((sqlite3_stmt *) v->vm);
4194 return sqlite3_column_type((sqlite3_stmt *) v->vm, col);
4210 return sqlite3_column_count((sqlite3_stmt *) v->vm);
4226 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4233 str = sqlite3_column_table_name16((sqlite3_stmt *) v->vm, col);
4253 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4260 str = sqlite3_column_database_name16((sqlite3_stmt *) v->vm, col);
4280 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4287 str = sqlite3_column_decltype16((sqlite3_stmt *) v->vm, col);
4307 int ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
4314 str = sqlite3_column_origin_name16((sqlite3_stmt *) v->vm, col);
4335 count = sqlite3_stmt_status((sqlite3_stmt *) v->vm, op,