summaryrefslogtreecommitdiff
path: root/ext/odbc/php_odbc.c
diff options
context:
space:
mode:
authorDan Kalowsky <kalowsky@php.net>2001-06-11 01:00:43 +0000
committerDan Kalowsky <kalowsky@php.net>2001-06-11 01:00:43 +0000
commita7e9b5611264ed29650973ab3dd1acd53907871f (patch)
treebee95a03c6cc5eeab4cf61f66f709978bbc84e5c /ext/odbc/php_odbc.c
parent22790c96021cdf602445983912f814424b4b7a64 (diff)
downloadphp-git-a7e9b5611264ed29650973ab3dd1acd53907871f.tar.gz
# just correcting the evil vim removal of {{{'s and }}}'s ... bad vim! no folding for you!
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r--ext/odbc/php_odbc.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c
index 1d86c7c63b..60ba594ce1 100644
--- a/ext/odbc/php_odbc.c
+++ b/ext/odbc/php_odbc.c
@@ -1521,7 +1521,7 @@ PHP_FUNCTION(solid_fetch_prev)
}
#endif
-/* proto int odbc_fetch_row(int result_id [, int row_number])
+/* {{{ proto int odbc_fetch_row(int result_id [, int row_number])
Fetch a row */
PHP_FUNCTION(odbc_fetch_row)
{
@@ -1575,9 +1575,9 @@ PHP_FUNCTION(odbc_fetch_row)
RETURN_TRUE;
}
-/* */
+/* }}} */
-/* proto string odbc_result(int result_id, mixed field)
+/* {{{ proto string odbc_result(int result_id, mixed field)
Get result data */
PHP_FUNCTION(odbc_result)
{
@@ -1746,9 +1746,9 @@ PHP_FUNCTION(odbc_result)
}
RETURN_TRUE;
}
-/* */
+/* }}} */
-/* proto int odbc_result_all(int result_id [, string format])
+/* {{{ proto int odbc_result_all(int result_id [, string format])
Print result as HTML table */
PHP_FUNCTION(odbc_result_all)
{
@@ -1869,9 +1869,9 @@ PHP_FUNCTION(odbc_result_all)
if (buf) efree(buf);
RETURN_LONG(result->fetched);
}
-/* */
+/* }}} */
-/* proto int odbc_free_result(int result_id)
+/* {{{ proto int odbc_free_result(int result_id)
Free resources associated with a result */
PHP_FUNCTION(odbc_free_result)
{
@@ -1898,23 +1898,23 @@ PHP_FUNCTION(odbc_free_result)
RETURN_TRUE;
}
-/* */
+/* }}} */
-/* proto int odbc_connect(string DSN, string user, string password [, int cursor_option])
+/* {{{ proto int odbc_connect(string DSN, string user, string password [, int cursor_option])
Connect to a datasource */
PHP_FUNCTION(odbc_connect)
{
odbc_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
-/* */
+/* }}} */
-/* proto int odbc_pconnect(string DSN, string user, string password [, int cursor_option])
+/* {{{ proto int odbc_pconnect(string DSN, string user, string password [, int cursor_option])
Establish a persistent connection to a datasource */
PHP_FUNCTION(odbc_pconnect)
{
odbc_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
}
-/* */
+/* }}} */
int odbc_sqlconnect(odbc_connection **conn, char *db, char *uid, char *pwd, int cur_opt, int persistent ODBCLS_DC)
{