diff options
| author | Damien Regad <dregad@mantisbt.org> | 2020-01-12 18:15:52 +0100 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2020-01-12 18:15:52 +0100 |
| commit | cf05969ff4b1e5bb06fdd4a354876717d51181d1 (patch) | |
| tree | 496448aee6f0c41ad3e54a24beda79f9f3939c01 /datadict | |
| parent | 1d4de5ee7a72cff039308f33b8a4a34d92c9c4b4 (diff) | |
| download | adodb-cf05969ff4b1e5bb06fdd4a354876717d51181d1.tar.gz adodb-cf05969ff4b1e5bb06fdd4a354876717d51181d1.tar.bz2 adodb-cf05969ff4b1e5bb06fdd4a354876717d51181d1.zip | |
Fix PHPDoc
Diffstat (limited to 'datadict')
| -rw-r--r-- | datadict/datadict-oci8.inc.php | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/datadict/datadict-oci8.inc.php b/datadict/datadict-oci8.inc.php index 7054e4bb..9aeafb77 100644 --- a/datadict/datadict-oci8.inc.php +++ b/datadict/datadict-oci8.inc.php @@ -26,11 +26,14 @@ class ADODB2_oci8 extends ADODB_DataDict { var $typeX = 'VARCHAR(4000)'; var $typeXL = 'CLOB'; - /* - * Legacy compatibility for sequence names for emulated auto-increments - * If set to true, creates sequences and triggers as TRIG_394545594 - * instead of TRIG_possibly_too_long_tablename - */ + /** + * Legacy compatibility for sequence names for emulated auto-increments. + * + * If set to true, creates sequences and triggers as TRIG_394545594 + * instead of TRIG_possibly_too_long_tablename + * + * @var bool $useCompactAutoIncrements + */ public $useCompactAutoIncrements = false; function metaType($t, $len=-1, $fieldobj=false) @@ -193,14 +196,14 @@ class ADODB2_oci8 extends ADODB_DataDict { } /** - * Creates an insert trigger to emulate an auto-increment column - * in a table - * - * @param str $tabname The name of the table - * @param str[] $tableoptions Optional configuration items - * - * @return str[] The SQL statements to create the trigger - */ + * Creates an insert trigger to emulate an auto-increment column + * in a table + * + * @param string $tabname The name of the table + * @param string[] $tableoptions Optional configuration items + * + * @return string[] The SQL statements to create the trigger + */ function _Triggers($tabname,$tableoptions) { |
