

Public Member Functions | |
| MetaType ($t, $len=-1) | |
| ActualType ($meta) | |
| CreateDatabase ($dbname, $options=false) | |
| AddColumnSQL ($tabname, $flds) | |
| AlterColumnSQL ($tabname, $flds) | |
| DropColumnSQL ($tabname, $flds) | |
| _DropAutoIncrement ($t) | |
| _CreateSuffix ($fname, $ftype, $fnotnull, $fdefault, $fautoinc, $fconstraint, $funsigned) | |
| _Triggers ($tabname, $tableoptions) | |
| _IndexSQL ($idxname, $tabname, $flds, $idxoptions) | |
| GetCommentSQL ($table, $col) | |
| in other words, we use a text area for editting. | |
| SetCommentSQL ($table, $col, $cmt) | |
Public Attributes | |
| $databaseType = 'oci8' | |
| $seqField = false | |
| $seqPrefix = 'SEQ_' | |
| $dropTable = "DROP TABLE %s CASCADE CONSTRAINTS" | |
| $trigPrefix = 'TRIG_' | |
| $alterCol = ' MODIFY ' | |
| $typeX = 'VARCHAR(4000)' | |
| $typeXL = 'CLOB' | |
Definition at line 16 of file datadict-oci8.inc.php.
| ADODB2_oci8::ActualType | ( | $ | meta | ) |
Returns the actual type given a character code.
C: varchar X: CLOB (character large object) or largest varchar size if CLOB is not supported C2: Multibyte varchar X2: Multibyte CLOB
B: BLOB (binary large object)
D: Date T: Date-time L: Integer field suitable for storing booleans (0 or 1) I: Integer F: Floating point number N: Numeric or decimal number
Reimplemented from ADODB_DataDict.
Definition at line 71 of file datadict-oci8.inc.php.
| ADODB2_oci8::_Triggers | ( | $ | tabname, | |
| $ | taboptions | |||
| ) |
GENERATE TRIGGERS IF NEEDED used when table has auto-incrementing field that is emulated using triggers
Reimplemented from ADODB_DataDict.
Definition at line 188 of file datadict-oci8.inc.php.
| ADODB2_oci8::GetCommentSQL | ( | $ | table, | |
| $ | col | |||
| ) |
in other words, we use a text area for editting.
any varchar/char field this size or greater is treated as a blob
Reimplemented from ADODB_DataDict.
Definition at line 280 of file datadict-oci8.inc.php.