| 723 | |
| 724 | |
| 725 | static int w_sql_select(struct sip_msg* msg, str* cols, str *table, |
| 726 | str *filter, str *order, void* dest, void *url) |
| 727 | { |
| 728 | struct db_url *parsed_url; |
| 729 | |
| 730 | if (url) |
| 731 | parsed_url = ((struct db_url_container *)url)->u.url; |
| 732 | else |
| 733 | parsed_url = default_db_url; |
| 734 | |
| 735 | return ops_sql_api_select(parsed_url, msg, cols, table, filter, order, |
| 736 | (pvname_list_t*)dest, 0); |
| 737 | } |
| 738 | |
| 739 | |
| 740 | static int w_sql_select_one(struct sip_msg* msg, str* cols, str *table, |
nothing calls this directly
no test coverage detected