| 767 | |
| 768 | |
| 769 | static int w_sql_insert(struct sip_msg* msg, str* table, str *cols, |
| 770 | void *url) |
| 771 | { |
| 772 | struct db_url *parsed_url; |
| 773 | |
| 774 | if (url) |
| 775 | parsed_url = ((struct db_url_container *)url)->u.url; |
| 776 | else |
| 777 | parsed_url = default_db_url; |
| 778 | |
| 779 | return ops_sql_api_insert(parsed_url, msg, table, cols); |
| 780 | } |
| 781 | |
| 782 | |
| 783 | static int w_sql_delete(struct sip_msg* msg, str *table, str *filter, |
nothing calls this directly
no test coverage detected