15 'default_text_field_length' => 4096,
16 'decimal_places' => 2,
27 switch ($field[
'type']) {
29 $length = !empty($field[
'length']) ? $field[
'length'] : $this->options[
'default_text_field_length'];
30 $fixed = !empty($field[
'fixed']) ? $field[
'fixed'] :
false;
33 return $fixed ? ($length ?
'CHAR(' . $length .
')' :
'CHAR(' . $this->options[
'default_text_field_length']
34 .
')') : ($length ?
'VARCHAR(' . $length .
')' :
'TEXT');
40 if (!empty($field[
'autoincrement'])) {
41 if (!empty($field[
'length'])) {
42 $length = $field[
'length'];
44 return 'BIGSERIAL PRIMARY KEY';
48 return 'SERIAL PRIMARY KEY';
50 if (!empty($field[
'length'])) {
51 $length = $field[
'length'];
54 } elseif ($length == 3 || $length == 4) {
56 } elseif ($length > 4) {
67 return 'TIME without time zone';
69 return 'TIMESTAMP without time zone';
73 $length = !empty($field[
'length']) ? $field[
'length'] : 18;
74 $scale = !empty($field[
'scale']) ? $field[
'scale'] : $this->options[
'decimal_places'];
76 return 'NUMERIC(' . $length .
',' . $scale .
')';
91 if (!empty($field[
'unsigned'])) {
92 $db->warnings[] =
"unsigned integer field \"$name\" is being declared as signed integer";
94 if (!empty($field[
'autoincrement'])) {
100 if (array_key_exists(
'default', $field)) {
101 if ($field[
'default'] ===
'') {
102 $field[
'default'] = empty($field[
'notnull']) ? null : 0;
104 $default =
' DEFAULT ' . $this->
quote($field[
'default'],
'integer');
105 } elseif (empty($field[
'notnull'])) {
106 $default =
' DEFAULT NULL';
109 $notnull = empty($field[
'notnull']) ?
'' :
' NOT NULL';
123 $db_type = strtolower($field[
'type']);
124 $length = $field[
'length'];
126 $unsigned = $fixed = null;
133 if ($length ==
'2') {
135 if (preg_match(
'/^(is|has)/', $field[
'name'])) {
170 if ($length ==
'1') {
172 if (preg_match(
'/^(is|has)/', $field[
'name'])) {
175 } elseif (strstr($db_type,
'text')) {
178 if ($fixed !==
false) {
188 $type[] =
'timestamp';
205 if ($field[
'scale']) {
206 $length = $length .
',' . $field[
'scale'];
231 if ((
int) $length <= 0) {
235 return array(
$type, $length, $unsigned, $fixed );
quote($value, $type=null, $quote=true, $escape_wildcards=false)
Class ilDBPdoFieldDefinition.
Class ilDBPdoPostgresFieldDefinition.
Class ilDatabaseException.
mapNativeDatatypeInternal($field)
getIntegerDeclaration($name, $field)
getTypeDeclaration($field)