summaryrefslogtreecommitdiff
path: root/drivers/adodb-oci8.inc.php
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2021-10-25 19:05:43 +0200
committerDamien Regad <dregad@mantisbt.org>2022-01-16 18:23:45 +0100
commitc89ce556bd5f60a9dc337a3c809163c20c4208a9 (patch)
treec12e3e1c38efa42301e63e677269279942609f91 /drivers/adodb-oci8.inc.php
parent9747b1a543f5e01d15f5c521ce98ae0c8a70bdad (diff)
downloadadodb-c89ce556bd5f60a9dc337a3c809163c20c4208a9.tar.gz
adodb-c89ce556bd5f60a9dc337a3c809163c20c4208a9.tar.bz2
adodb-c89ce556bd5f60a9dc337a3c809163c20c4208a9.zip
Fix reported errors in generated documentation
Diffstat (limited to 'drivers/adodb-oci8.inc.php')
-rw-r--r--drivers/adodb-oci8.inc.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/drivers/adodb-oci8.inc.php b/drivers/adodb-oci8.inc.php
index 6df64359..9b251698 100644
--- a/drivers/adodb-oci8.inc.php
+++ b/drivers/adodb-oci8.inc.php
@@ -973,9 +973,12 @@ END;
/**
* Execute SQL
*
- * @param sql SQL statement to execute, or possibly an array holding prepared statement ($sql[0] will hold sql text)
- * @param [inputarr] holds the input data to bind to. Null elements will be set to null.
- * @return RecordSet or false
+ * @param string|array $sql SQL statement to execute, or possibly an array holding
+ * prepared statement ($sql[0] will hold sql text).
+ * @param array|false $inputarr holds the input data to bind to.
+ * Null elements will be set to null.
+ *
+ * @return ADORecordSet|false
*/
function Execute($sql,$inputarr=false)
{
@@ -1257,12 +1260,12 @@ END;
* $db->Parameter($stmt,$group,'group');
* $db->Execute($stmt);
*
- * @param $stmt Statement returned by Prepare() or PrepareSP().
+ * @param $stmt Statement returned by {@see Prepare()} or {@see PrepareSP()}.
* @param $var PHP variable to bind to
* @param $name Name of stored procedure variable name to bind to.
- * @param [$isOutput] Indicates direction of parameter 0/false=IN 1=OUT 2= IN/OUT. This is ignored in oci8.
- * @param [$maxLen] Holds an maximum length of the variable.
- * @param [$type] The data type of $var. Legal values depend on driver.
+ * @param bool $isOutput Indicates direction of parameter 0/false=IN 1=OUT 2= IN/OUT. This is ignored in oci8.
+ * @param int $maxLen Holds an maximum length of the variable.
+ * @param mixed $type The data type of $var. Legal values depend on driver.
*
* @link http://php.net/oci_bind_by_name
*/