diff options
Diffstat (limited to 'datadict/datadict-oci8.inc.php')
| -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) { |
