Module: kamailio
Branch: 4.2
Commit: 458e8ba0ff7a7453050734c47f71a7b9bcaa03a6
URL: https://github.com/kamailio/kamailio/commit/458e8ba0ff7a7453050734c47f71a7b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-12T09:52:40+01:00
sqlops: regenereated the readme file
(cherry picked from commit 61d6b119398a87c4a877de3fba0dc9c6ec2830a7)
---
Modified: modules/sqlops/README
---
Diff: https://github.com/…
[View More]kamailio/kamailio/commit/458e8ba0ff7a7453050734c47f71a7b…
Patch: https://github.com/kamailio/kamailio/commit/458e8ba0ff7a7453050734c47f71a7b…
---
diff --git a/modules/sqlops/README b/modules/sqlops/README
index 1ad1be6..ccf03b3 100644
--- a/modules/sqlops/README
+++ b/modules/sqlops/README
@@ -280,7 +280,8 @@ sql_result_free("ra");
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., insert, delete,
- update...).
+ update...). Note that async_workers core parameter must be set in order
+ to enable the asyncronous framework needed by this function.
* connection - the name of the connection to be used for the query
(defined via "sqlcon" parameter).
* query - SQL query string or pseudo-variables containing SQL query.
[View Less]
Module: kamailio
Branch: 4.2
Commit: 2ee8e8d0a0808fde86941712bc7fbebcac103dcc
URL: https://github.com/kamailio/kamailio/commit/2ee8e8d0a0808fde86941712bc7fbeb…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-12T09:52:27+01:00
sqlops: added note to sql_async_query() about core async_workers
- the parameter must be set to enable the async framework used by this
function
(cherry picked from commit …
[View More]112e83c2e8b72be04f7ad5b896db0bf3bcbdbe8f)
---
Modified: modules/sqlops/doc/sqlops_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/2ee8e8d0a0808fde86941712bc7fbeb…
Patch: https://github.com/kamailio/kamailio/commit/2ee8e8d0a0808fde86941712bc7fbeb…
---
diff --git a/modules/sqlops/doc/sqlops_admin.xml b/modules/sqlops/doc/sqlops_admin.xml
index ec61cac..bb9011b 100644
--- a/modules/sqlops/doc/sqlops_admin.xml
+++ b/modules/sqlops/doc/sqlops_admin.xml
@@ -385,7 +385,9 @@ sql_result_free("ra");
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.,
- insert, delete, update...).
+ insert, delete, update...). Note that async_workers core parameter
+ must be set in order to enable the asyncronous framework
+ needed by this function.
</para>
<itemizedlist>
<listitem>
[View Less]
Module: kamailio
Branch: 4.2
Commit: 921ed59eb8f766a9dc9c87138c3b6ba04d4c1bfa
URL: https://github.com/kamailio/kamailio/commit/921ed59eb8f766a9dc9c87138c3b6ba…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-12T09:51:59+01:00
db_mongodb: updated details in docs about the limitations
(cherry picked from commit 6940ce0e991fd5b6af9ef5822dc2b1a324319174)
---
Modified: modules/db_mongodb/doc/…
[View More]db_mongodb_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/921ed59eb8f766a9dc9c87138c3b6ba…
Patch: https://github.com/kamailio/kamailio/commit/921ed59eb8f766a9dc9c87138c3b6ba…
---
diff --git a/modules/db_mongodb/doc/db_mongodb_admin.xml b/modules/db_mongodb/doc/db_mongodb_admin.xml
index 5971e7d..ee34cb2 100644
--- a/modules/db_mongodb/doc/db_mongodb_admin.xml
+++ b/modules/db_mongodb/doc/db_mongodb_admin.xml
@@ -34,8 +34,12 @@
<itemizedlist>
<listitem>
<para>
- This module has implemented INSERT, UPDATE and DELETE. Query
- (SELECT) is not yet storing the result.
+ This module has implemented the equivalent operations for INSERT,
+ UPDATE, DELETE and SELECT. The match condition (WHERE clause)
+ works with the operators: equal, not equal, greater than, less than,
+ equal or greater than, equal or less than. Raw query is not
+ implemented inside this module, use ndb_mongodb for sending any
+ kind of command to a MongoDB server.
</para>
</listitem>
</itemizedlist>
[View Less]