Lines Matching defs:sql_result
67 struct sql_result *(*query_s)(struct sql_db *db, const char *query);
104 struct sql_result *(*statement_query_s)(struct sql_statement *stmt);
134 void (*free)(struct sql_result *result);
135 int (*next_row)(struct sql_result *result);
137 unsigned int (*get_fields_count)(struct sql_result *result);
138 const char *(*get_field_name)(struct sql_result *result,
140 int (*find_field)(struct sql_result *result, const char *field_name);
142 const char *(*get_field_value)(struct sql_result *result,
145 (*get_field_value_binary)(struct sql_result *result,
148 const char *(*find_field_value)(struct sql_result *result,
150 const char *const *(*get_values)(struct sql_result *result);
152 const char *(*get_error)(struct sql_result *result);
153 void (*more)(struct sql_result **result, bool async,
174 struct sql_result {
202 extern struct sql_result sql_not_connected_result;