Module: kamailio Branch: master Commit: f911e648c33b6818e2ea8c5ae2613f7ca94ea290 URL: https://github.com/kamailio/kamailio/commit/f911e648c33b6818e2ea8c5ae2613f7ca94ea290
Author: Bastian Triller <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2026-06-03T08:59:41+02:00 sqlops: Fix format for return code 3 in docs --- Modified: src/modules/sqlops/doc/sqlops_admin.xml --- Diff: https://github.com/kamailio/kamailio/commit/f911e648c33b6818e2ea8c5ae2613f7ca94ea290.diff Patch: https://github.com/kamailio/kamailio/commit/f911e648c33b6818e2ea8c5ae2613f7ca94ea290.patch --- diff --git a/src/modules/sqlops/doc/sqlops_admin.xml b/src/modules/sqlops/doc/sqlops_admin.xml index 70cfe569253..5fbb2abcf06 100644 --- a/src/modules/sqlops/doc/sqlops_admin.xml +++ b/src/modules/sqlops/doc/sqlops_admin.xml @@ -262,7 +262,7 @@ modparam("sqlops", "connect_mode", 1) <para> Note that a result container can be used for different SQL queries, it is not required to have result container per SQL query. Use different - containers when the result records are needed at the same time (e.g., + containers when the result records are needed at the same time (e.g. compare a field from one result with a field from another result). </para> <para> @@ -301,6 +301,8 @@ modparam("sqlops", "results_maxsize", 64) <para> <emphasis>2</emphasis> - query successful, no rows returned </para> + </listitem> + <listitem> <para> <emphasis>3</emphasis> - query successful, at least one row returned, but result parameter was not given @@ -492,9 +494,9 @@ sql_result_free("ra"); </title> <para> Make an async SQL query using 'connection', if implemented by db - driver module (e.g., db_mysql). The query is executed in another + driver module (e.g. db_mysql). The query is executed in another process and result is not available back to config, thus it should - be used only for sql statements that don't return values (e.g., + be used only for sql statements that don't return values (e.g. insert, delete, update...). Note that async_workers core parameter must be set in order to enable the asynchronous framework needed by this function. _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
