|
Doctrine 1.2.4
|
Inherits Doctrine_DataDict.
Public Member Functions | |
| getConnection () | |
| getIntegerDeclaration ($name, $field) | |
| getModuleName () | |
| getNativeDeclaration (array $field) | |
| getPortableDeclaration (array $field) | |
| parseBoolean ($value) | |
Static Protected Attributes | |
| static | $reservedKeyWords |
|
inherited |
getConnection returns the connection object this module uses
Definition at line 68 of file Module.php.
| Doctrine_DataDict_Pgsql::getIntegerDeclaration | ( | $name, | |
| $field | |||
| ) |
Obtain DBMS specific SQL code portion needed to declare an integer type field to be used in statements like CREATE TABLE.
| string | $name | name the field to be declared. |
| 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: |
unsigned Boolean flag that indicates whether the field should be declared as unsigned integer if possible.
default Integer 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.
if ( ! empty($field['unsigned'])) { $this->conn->warnings[] = "unsigned integer field \"$name" is being declared as signed integer"; }
TODO: is this needed ? elseif (empty($field['notnull'])) { $default = ' DEFAULT NULL'; }
Definition at line 639 of file Pgsql.php.
|
inherited |
getModuleName returns the name of this module
Definition at line 79 of file Module.php.
| Doctrine_DataDict_Pgsql::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 360 of file Pgsql.php.
| Doctrine_DataDict_Pgsql::getPortableDeclaration | ( | array | $field | ) |
Maps a native array description of a field to a portable Doctrine datatype and length
| array | $field | native field description |
Definition at line 445 of file Pgsql.php.
| Doctrine_DataDict_Pgsql::parseBoolean | ( | $value | ) |
|
staticprotected |