summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2001-09-17 19:55:22 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2001-09-17 19:55:22 +0000
commit0edb79a3d485ed96b8242f4a2c6a342b5f47f573 (patch)
tree992a91ab7648b6e6ca7ab851b232ae88c1e56e3f
parent75095ce66c9f17f96f9711213b75a7c8fd8e008b (diff)
downloadphp-git-0edb79a3d485ed96b8242f4a2c6a342b5f47f573.tar.gz
some proto fixes (not all done yet)
-rw-r--r--ext/dbplus/php_dbplus.c38
1 files changed, 22 insertions, 16 deletions
diff --git a/ext/dbplus/php_dbplus.c b/ext/dbplus/php_dbplus.c
index 3e5e8da10e..2c33740563 100644
--- a/ext/dbplus/php_dbplus.c
+++ b/ext/dbplus/php_dbplus.c
@@ -342,7 +342,7 @@ PHP_FUNCTION(dbplus_add)
}
/* }}} */
-/* {{{ proto int dbplus_aql(string query [, string server [, string dbpath]])
+/* {{{ proto resource dbplus_aql(string query [, string server [, string dbpath]])
Perform AQL query */
PHP_FUNCTION(dbplus_aql)
{
@@ -777,7 +777,7 @@ PHP_FUNCTION(dbplus_next)
}
/* }}} */
-/* {{{ proto int dbplus_open(string name)
+/* {{{ proto resource dbplus_open(string name)
Open a relation file */
PHP_FUNCTION(dbplus_open)
{
@@ -843,8 +843,9 @@ PHP_FUNCTION(dbplus_rchperm)
}
/* }}} */
-/* {{{ proto int dbplus_rcreate(string name, mixed domlist [, int overwrite])
- */
+/* {{{ proto resource dbplus_rcreate(string name, mixed domlist [, int overwrite])
+ Create a new db++ reslation
+*/
PHP_FUNCTION(dbplus_rcreate)
{
zval **name, **domlist, **overwrite;
@@ -903,8 +904,9 @@ PHP_FUNCTION(dbplus_rcreate)
}
/* }}} */
-/* {{{ proto int dbplus_rcrtexact(string name, int handle[, int overwrite])
- */
+/* {{{ proto resource dbplus_rcrtexact(string name, resource relation [, boolean overwrite])
+ Create an exact but empty copy of a relation including indices
+ */
PHP_FUNCTION(dbplus_rcrtexact)
{
zval **name, **relation, **overwrite;
@@ -943,8 +945,9 @@ PHP_FUNCTION(dbplus_rcrtexact)
}
/* }}} */
-/* {{{ proto int dbplus_rcrtlike(string name, int handle [, int overwrite])
- */
+/* {{{ proto resource dbplus_rcrtlike(string name, int handle [, int overwrite])
+ Create an empty copy of a relation with default indices
+*/
PHP_FUNCTION(dbplus_rcrtlike)
{
zval **name, **relation, **overwrite;
@@ -1047,8 +1050,9 @@ PHP_FUNCTION(dbplus_restorepos)
}
/* }}} */
-/* {{{ proto int dbplus_rkeys(int relation, mixed domlist)
- */
+/* {{{ proto resource dbplus_rkeys(resource relation, mixed domlist)
+ Define primary key for relation
+*/
PHP_FUNCTION(dbplus_rkeys)
{
relf *r, *rnew;
@@ -1106,8 +1110,8 @@ PHP_FUNCTION(dbplus_rkeys)
}
/* }}} */
-/* {{{ proto int dbplus_ropen(string name)
- Open relation file ... ??? */
+/* {{{ proto resource dbplus_ropen(string name)
+ Open relation file local */
PHP_FUNCTION(dbplus_ropen)
{
relf *r;
@@ -1128,7 +1132,7 @@ PHP_FUNCTION(dbplus_ropen)
}
/* }}} */
-/* {{{ proto int dbplus_rquery(string name, string dbpath)
+/* {{{ proto resceour dbplus_rquery(string name, string dbpath)
*/
PHP_FUNCTION(dbplus_rquery)
{
@@ -1169,8 +1173,9 @@ PHP_FUNCTION(dbplus_rrename)
}
/* }}} */
-/* {{{ proto int dbplus_rsecindex(int relation, mixed domlist, int compact)
- */
+/* {{{ proto resource dbplus_rsecindex(resource relation, mixed domlist, int compact)
+ Create an additional index on relation
+*/
PHP_FUNCTION(dbplus_rsecindex)
{
relf *r, *rnew;
@@ -1315,7 +1320,7 @@ PHP_FUNCTION(dbplus_setindexbynumber)
}
/* }}} */
-/* {{{ proto int dbplus_sql(string query, string server, string dbpath)
+/* {{{ proto resource dbplus_sql(string query, string server, string dbpath)
Perform SQL query */
PHP_FUNCTION(dbplus_sql)
{
@@ -1356,6 +1361,7 @@ PHP_FUNCTION(dbplus_sql)
/* }}} */
/* {{{ proto string dbplus_tcl(int sid, string script)
+ Execute server side TCL code
*/
PHP_FUNCTION(dbplus_tcl)
{