* Insert a row into table */
| 1230 | * Insert a row into table |
| 1231 | */ |
| 1232 | int db_http_insert(const db_con_t* _h, const db_key_t* _k, |
| 1233 | const db_val_t* _v, const int _n) |
| 1234 | { |
| 1235 | return do_http_op ( |
| 1236 | _h, |
| 1237 | _k, NULL, _v, _n, |
| 1238 | NULL , 0 , |
| 1239 | NULL , NULL , 0, |
| 1240 | NULL, |
| 1241 | NULL, |
| 1242 | NULL, |
| 1243 | HTTPDB_INSERT |
| 1244 | ); |
| 1245 | |
| 1246 | } |
| 1247 | |
| 1248 | |
| 1249 | /* |
nothing calls this directly
no test coverage detected