19 declare(strict_types=1);
33 switch ($field[
'type']) {
35 if (empty($field[
'length']) && array_key_exists(
'default', $field)) {
36 $field[
'length'] = $db->varchar_max_length ??
null;
38 $length = empty($field[
'length']) ? false : $field[
'length'];
39 $fixed = empty($field[
'fixed']) ? false : $field[
'fixed'];
41 return $length ?
'CHAR(' . $length .
')' :
'CHAR(255)';
43 return $length ?
'VARCHAR(' . $length .
')' :
'TEXT';
46 if (!empty($field[
'length'])) {
47 $length = $field[
'length'];
52 if ($length <= 65532) {
56 if ($length <= 16_777_215) {
63 if (!empty($field[
'length'])) {
64 $length = $field[
'length'];
69 if ($length <= 65532) {
73 if ($length <= 16_777_215) {
80 if (!empty($field[
'length'])) {
81 $length = $field[
'length'];
115 $length = empty($field[
'length']) ? 18 : $field[
'length'];
116 $scale = empty($field[
'scale']) ? $db->options[
'decimal_places'] : $field[
'scale'];
118 return 'DECIMAL(' . $length .
',' . $scale .
')';
133 $default = $autoinc =
'';
134 if (!empty($field[
'autoincrement'])) {
135 $autoinc =
' AUTO_INCREMENT PRIMARY KEY';
136 } elseif (array_key_exists(
'default', $field)) {
137 if ($field[
'default'] ===
'') {
138 $field[
'default'] = empty($field[
'notnull']) ?
null : 0;
140 $default =
' DEFAULT ' . $this->
quote($field[
'default'],
'integer');
141 } elseif (empty($field[
'notnull'])) {
142 $default =
' DEFAULT NULL';
145 $notnull = empty($field[
'notnull']) ?
'' :
' NOT NULL';
146 $unsigned = empty($field[
'unsigned']) ?
'' :
' UNSIGNED';
147 $name = $db->quoteIdentifier($name,
true);
149 return $name .
' ' . $this->
getTypeDeclaration($field) . $unsigned . $default . $notnull . $autoinc;
158 $db_type = strtolower((
string) $field[
'type']);
159 $db_type = strtok($db_type,
'(), ');
160 if ($db_type ===
'national') {
161 $db_type = strtok(
'(), ');
163 if (!empty($field[
'length'])) {
164 $length = strtok($field[
'length'],
', ');
165 $decimal = strtok(
', ');
167 $length = strtok(
'(), ');
168 $decimal = strtok(
'(), ');
171 $unsigned = $fixed =
null;
176 if (preg_match(
'/^(is|has)/', (
string) $field[
'name'])) {
177 $type = array_reverse($type);
179 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
184 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
189 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
195 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
200 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
213 if ($length ==
'1') {
215 if (preg_match(
'/^(is|has)/', (
string) $field[
'name'])) {
216 $type = array_reverse($type);
218 } elseif (str_contains($db_type,
'text')) {
220 if ($decimal ===
'binary') {
224 if ($fixed !==
false) {
230 preg_match_all(
'/\'.+\'/U', (
string) $field[
'type'], $matches);
233 if (is_array($matches)) {
234 foreach ($matches[0] as $value) {
235 $length = max($length, strlen($value) - 2);
237 if ($length ==
'1' && count($matches[0]) === 2) {
239 if (preg_match(
'/^(is|has)/', (
string) $field[
'name'])) {
240 $type = array_reverse($type);
257 $type[] =
'timestamp';
268 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
274 $unsigned = preg_match(
'/ unsigned/i', (
string) $field[
'type']);
275 if ($decimal !==
false) {
276 $length = $length .
',' . $decimal;
299 if ((
int) $length <= 0) {
303 return [ $type, $length, $unsigned, $fixed ];
getTypeDeclaration(array $field)
Class ilDBPdoFieldDefinition.
getIntegerDeclaration(string $name, array $field)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
mapNativeDatatypeInternal(array $field)
Class ilDBPdoMySQLFieldDefinition.
quote($value, ?string $type=null, bool $quote=true, bool $escape_wildcards=false)