|
Doctrine 1.2.4
|
Inherits Doctrine_DataDict.
Public Member Functions | |
| getConnection () | |
| getIntegerDeclaration ($name, array $field) | |
| getModuleName () | |
| getNativeDeclaration (array $field) | |
| getPortableDeclaration (array $field) | |
| parseBoolean ($value) | |
Definition at line 32 of file Sqlite.php.
|
inherited |
getConnection returns the connection object this module uses
Definition at line 68 of file Module.php.
| Doctrine_DataDict_Sqlite::getIntegerDeclaration | ( | $name, | |
| array | $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.
elseif (empty($field['notnull'])) { $default = ' DEFAULT NULL'; }
Definition at line 289 of file Sqlite.php.
|
inherited |
getModuleName returns the name of this module
Definition at line 79 of file Module.php.
| Doctrine_DataDict_Sqlite::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 57 of file Sqlite.php.
| Doctrine_DataDict_Sqlite::getPortableDeclaration | ( | array | $field | ) |
Maps a native array description of a field to Doctrine datatype and length
| array | $field | native field description |
Definition at line 130 of file Sqlite.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.