* Raw SQL query */
| 1209 | * Raw SQL query |
| 1210 | */ |
| 1211 | int db_http_raw_query(const db_con_t* _h, const str* _s, db_res_t** _r) |
| 1212 | { |
| 1213 | return do_http_op ( |
| 1214 | _h, |
| 1215 | NULL, NULL, NULL, 0, |
| 1216 | NULL , 0 , |
| 1217 | NULL , NULL , 0, |
| 1218 | NULL, |
| 1219 | _s, |
| 1220 | _r, |
| 1221 | HTTPDB_CUSTOM |
| 1222 | ); |
| 1223 | |
| 1224 | |
| 1225 | |
| 1226 | } |
| 1227 | |
| 1228 | |
| 1229 | /* |
nothing calls this directly
no test coverage detected