From fd7f27cd80c9dbaeb5f023823eccf4946eec6013 Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Tue, 18 Sep 2001 19:49:36 +0000 Subject: [PATCH] documentation on AQL query functions git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@57744 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/dbplus.xml | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) 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.