|
Doctrine 1.2.4
|
Inherits Doctrine_DataDict.
Public Member Functions | |
| getConnection () | |
| getModuleName () | |
| getNativeDeclaration (array $field) | |
| getPortableDeclaration (array $field) | |
| parseBoolean ($value) | |
Definition at line 31 of file Oracle.php.
|
inherited |
getConnection returns the connection object this module uses
Definition at line 68 of file Module.php.
|
inherited |
getModuleName returns the name of this module
Definition at line 79 of file Module.php.
| Doctrine_DataDict_Oracle::getNativeDeclaration | ( | array | $field | ) |
Obtain DBMS specific SQL code portion needed to declare an text type field to be used in statements like CREATE TABLE.
| array | $field | associative array with the name of the properties of the field being declared as array indexes. Currently, the types of supported field properties are as follows: |
length Integer value that determines the maximum length of the text field. If this argument is missing the field should be declared to have the longest length allowed by the DBMS.
default Text value to be used as default for this field.
notnull Boolean flag that indicates whether this field is constrained to not be set to null.
Definition at line 55 of file Oracle.php.
| Doctrine_DataDict_Oracle::getPortableDeclaration | ( | array | $field | ) |
Maps a native array description of a field to a doctrine datatype and length
| array | $field | native field description |
| Doctrine_DataDict_Oracle_Exception |
Definition at line 126 of file Oracle.php.
|
inherited |
parseBoolean parses a literal boolean value and returns proper sql equivalent
| string | $value | boolean value to be parsed |
Definition at line 44 of file DataDict.php.