}
/* }}} */
-/* {{{ proto int ibase_query([int link_identifier, ]string query)
- Execute a query (without parameter placeholders). */
+/* {{{ proto int ibase_query([int link_identifier], string query)
+ Execute a query (without parameter placeholders) */
PHP_FUNCTION(ibase_query)
{
pval *query, *ibase_link;
/* }}} */
/* {{{ proto int ibase_fetch_row(int result)
- Fetch a row from the results of a query. */
+ Fetch a row from the results of a query */
PHP_FUNCTION(ibase_fetch_row)
{
pval *result;
/* }}} */
/* {{{ proto int ibase_free_result(int result)
- Free the memory used by a result. */
+ Free the memory used by a result */
PHP_FUNCTION(ibase_free_result)
{
pval *result;
}
/* }}} */
-/* {{{ proto int ibase_prepare([int link_identifier, ]string query)
- Prepare a query for later binding of parameter placeholders and execution. */
+/* {{{ proto int ibase_prepare([int link_identifier], string query)
+ Prepare a query for later binding of parameter placeholders and execution */
PHP_FUNCTION(ibase_prepare)
{
pval *query, *ibase_link;
}
/* }}} */
-/* {{{ proto int ibase_bind (int query)
+/* {{{ proto int ibase_bind(int query)
Bind parameter placeholders in a previously prepared query. Still nonfunctional. */
PHP_FUNCTION(ibase_bind)
{
/* }}} */
/* {{{ proto int ibase_execute(int query)
- Execute a previously prepared (and possibly binded) query. */
+ Execute a previously prepared (and possibly binded) query */
PHP_FUNCTION(ibase_execute)
{
pval *query;
/* }}} */
/* {{{ proto int ldap_mod_add(int link, string dn, array entry)
- Add attribute values to current */
+ Add attribute values to current */
PHP_FUNCTION(ldap_mod_add)
{
php_ldap_do_modify(INTERNAL_FUNCTION_PARAM_PASSTHRU, LDAP_MOD_ADD);