diff --git a/functions/dbplus.xml b/functions/dbplus.xml index eba9b7baba..c46b42834e 100644 --- a/functions/dbplus.xml +++ b/functions/dbplus.xml @@ -1,5 +1,5 @@ - + DB++ Functions DB++ @@ -335,9 +335,23 @@ &warn.experimental.func; - - Not implemented yet. - + + dbplus_aql will execute an AQL + query on the given + server and + dbpath. + + + On success it will return a relation handle. The result data may + be fetched from this relation by calling + dbplus_next and + dbplus_current. Other relation access + functions will not work on a result relation. + + + Further information on the AQL A... Query Language is provided in + the opriginal db++ manual. + @@ -1121,19 +1135,23 @@ dbplus_rquery - + Perform local (raw) AQL query Description int dbplus_rquery - + string query + string dbpath &warn.experimental.func; - Not implemented yet. + dbplus_rquery performs a local (raw) AQL + query using an AQL interpreter embedded into the db++ client + library. dbplus_rquery is faster than + dbplus_aql but will work on local data only.