diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/adodb-firebird.inc.php | 6 | ||||
| -rw-r--r-- | drivers/adodb-oci8.inc.php | 17 |
2 files changed, 13 insertions, 10 deletions
diff --git a/drivers/adodb-firebird.inc.php b/drivers/adodb-firebird.inc.php index e479077f..54e2620f 100644 --- a/drivers/adodb-firebird.inc.php +++ b/drivers/adodb-firebird.inc.php @@ -244,11 +244,11 @@ class ADODB_firebird extends ADOConnection { /** - * Commits a transaction + * Commits a transaction. * - * @param bool $ok set to false to rollback transaction, true to commit + * @param bool $ok false to rollback transaction, true to commit * - * @return true/false. + * @return bool */ public function commitTrans($ok=true) { 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 */ |
