\return true value if the string is NULL or zero length
*/
static inline int zstr(const char *s) {
- return (!s || *(s) == '\0');
+ return !s || *s == '\0';
}
#define switch_strlen_zero(x) zstr(x)
switch_mutex_lock(profile->ireg_mutex);
-
- sprintf(sqlbuf, "begin;\n");
- sofia_glue_actually_execute_sql(profile, sqlbuf, NULL);
+ sofia_glue_actually_execute_sql(profile, "begin;\n", NULL);
while (switch_queue_trypop(profile->sql_queue, &pop) == SWITCH_STATUS_SUCCESS && pop) {
char *sql = (char *) pop;
//printf("TRANS:\n%s\n", sqlbuf);
sofia_glue_actually_execute_sql(profile, sqlbuf, NULL);
-
- sprintf(sqlbuf, "commit;\n");
- sofia_glue_actually_execute_sql(profile, sqlbuf, NULL);
+ sofia_glue_actually_execute_sql(profile, "commit;\n", NULL);
switch_mutex_unlock(profile->ireg_mutex);
switch_odbc_handle_exec(odbc_dbh, "DROP TABLE sip_registrations", NULL);
switch_odbc_handle_exec(odbc_dbh, reg_sql, NULL);
}
- free(test_sql);
+
+
+
+ if (sofia_test_pflag(profile, PFLAG_SQL_IN_TRANS)) {
+ char *test2 = switch_mprintf("%s;%s", test_sql, test_sql);
+
+ if (switch_odbc_handle_exec(odbc_dbh, test2, NULL) != SWITCH_ODBC_SUCCESS) {
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "GREAT SCOTT!!! Cannot execute batched statements!\n"
+ "If you are using mysql, make sure you are using MYODBC 3.51.18 or higher and enable FLAG_MULTI_STATEMENTS\n");
+ sofia_clear_pflag(profile, PFLAG_SQL_IN_TRANS);
+
+ }
+ free(test2);
+ }
+
+ free(test_sql);
test_sql = switch_mprintf("delete from sip_subscriptions where hostname='%q' and network_ip like '%%' and network_port like '%%'",