19 declare(strict_types=1);
49 self::T_TEXT => [
'length',
'notnull',
'default',
'fixed'],
50 self::T_INTEGER => [
'length',
'notnull',
'default',
'unsigned'],
51 self::T_FLOAT => [
'notnull',
'default'],
52 self::T_DATE => [
'notnull',
'default'],
53 self::T_TIME => [
'notnull',
'default'],
54 self::T_TIMESTAMP => [
'notnull',
'default'],
55 self::T_CLOB => [
'notnull',
'default'],
56 self::T_BLOB => [
'notnull',
'default'],
62 "text" => [
"length",
"notnull",
"default",
"fixed"],
63 "integer" => [
"length",
"notnull",
"default",
"unsigned"],
64 "float" => [
"notnull",
"default"],
65 "date" => [
"notnull",
"default"],
66 "time" => [
"notnull",
"default"],
67 "timestamp" => [
"notnull",
"default"],
68 "clob" => [
"length",
"notnull",
"default"],
69 "blob" => [
"length",
"notnull",
"default"],
72 self::T_INTEGER => [1, 2, 3, 4, 8],
172 "CONSTRAINT_CATALOG",
286 "GEOMETRYCOLLECTION",
375 "MASTER_AUTO_POSITION",
377 "MASTER_CONNECT_RETRY",
379 "MASTER_HEARTBEAT_PERIOD",
385 "MASTER_RETRY_COUNT",
393 "MASTER_SSL_CRLPATH",
395 "MASTER_SSL_VERIFY_SERVER_CERT",
396 "MASTER_TLS_VERSION",
400 "MAX_CONNECTIONS_PER_HOUR",
401 "MAX_QUERIES_PER_HOUR",
404 "MAX_STATEMENT_TIME",
405 "MAX_UPDATES_PER_HOUR",
406 "MAX_USER_CONNECTIONS",
418 "MINUTE_MICROSECOND",
447 "NO_WRITE_TO_BINLOG",
530 "REPLICATE_DO_TABLE",
531 "REPLICATE_IGNORE_DB",
532 "REPLICATE_IGNORE_TABLE",
533 "REPLICATE_REWRITE_DB",
534 "REPLICATE_WILD_DO_TABLE",
535 "REPLICATE_WILD_IGNORE_TABLE",
565 "SECOND_MICROSECOND",
597 "SQL_AFTER_MTS_GAPS",
602 "SQL_CALC_FOUND_ROWS",
621 "STATS_SAMPLE_PAGES",
832 if ($this->query_utils ===
null) {
845 'timestamp' =>
'1970-01-01 00:00:00',
846 'time' =>
'00:00:00',
847 'date' =>
'1970-01-01',
857 if (!preg_match(self::DEFINITION_TABLE_NAME, $table_name)) {
858 throw new ilDatabaseException(
'Table name must only contain _a-z0-9 and must start with a-z.');
862 throw new ilDatabaseException(
"Invalid table name '" . $table_name .
"' (Reserved Word).");
865 if (stripos($table_name,
"sys_") === 0) {
866 throw new ilDatabaseException(
"Invalid table name '" . $table_name .
"'. Name must not start with 'sys_'.");
869 if (strlen($table_name) > 22) {
870 throw new ilDatabaseException(
"Invalid table name '" . $table_name .
"'. Maximum table identifer length is 22 bytes.");
911 if (!preg_match(
"/^[a-z]+[_a-z0-9]*$/", $column_name)) {
913 .
"'. Column name must only contain _a-z0-9 and must start with a-z.");
917 throw new ilDatabaseException(
"Invalid column name '" . $column_name .
"' (Reserved Word).");
920 if (stripos($column_name,
"sys_") === 0) {
921 throw new ilDatabaseException(
"Invalid column name '" . $column_name .
"'. Name must not start with 'sys_'.");
924 if (strlen($column_name) > 30) {
925 throw new ilDatabaseException(
"Invalid column name '" . $column_name .
"'. Maximum column identifer length is 30 bytes.");
936 if (!preg_match(
"/^[a-z]+[_a-z0-9]*$/", $a_name)) {
937 throw new ilDatabaseException(
"Invalid column name '" . $a_name .
"'. Column name must only contain _a-z0-9 and must start with a-z.");
944 if (strlen($a_name) > 3) {
945 throw new ilDatabaseException(
"Invalid index name '" . $a_name .
"'. Maximum index identifer length is 3 bytes.");
958 switch ($a_def[
"type"]) {
960 throw new ilDatabaseException(
"Invalid column type '" . $a_def[
"type"] .
"'. Use integer(1) instead.");
963 throw new ilDatabaseException(
"Invalid column type '" . $a_def[
"type"] .
"'. Use float or integer instead.");
966 throw new ilDatabaseException(
"Invalid column type '" . $a_def[
"type"] .
"'. Allowed types are: " 973 foreach (array_keys($a_def) as $k) {
974 if ($k !==
"type" && !in_array($k, $allowed_attributes[$a_def[
"type"]],
true)) {
975 throw new ilDatabaseException(
"Attribute '" . $k .
"' is not allowed for column type '" . $a_def[
"type"] .
"'.");
981 switch ($a_def[
"type"]) {
983 if ((!isset($a_def[
"length"]) || $a_def[
"length"] < 1 || $a_def[
"length"] > $max_length[self::T_TEXT]) && isset($a_def[
"length"])) {
984 throw new ilDatabaseException(
"Invalid length '" . $a_def[
"length"] .
"' for type text." .
" Length must be >=1 and <= " 985 . $max_length[self::T_TEXT] .
".");
989 case self::T_INTEGER:
990 if (isset($a_def[
"length"]) && !in_array((
int) $a_def[
"length"], $max_length[self::T_INTEGER],
true)) {
991 throw new ilDatabaseException(
"Invalid length '" . $a_def[
"length"] .
"' for type integer." .
" Length must be " 992 . implode(
', ', $max_length[self::T_INTEGER]) .
" (bytes).");
994 if ($a_def[
"unsigned"] ??
null) {
1005 return in_array($attribute, $this->allowed_attributes[$type],
true);
1052 return $this->db_instance;
1063 if (!empty($db->options[
'datatype_map'])) {
1064 foreach ($db->options[
'datatype_map'] as $type => $mapped_type) {
1065 if (array_key_exists($mapped_type, $types)) {
1066 $types[$type] = $types[$mapped_type];
1067 } elseif (!empty($db->options[
'datatype_map_callback'][$type])) {
1068 $parameter = [
'type' => $type,
'mapped_type' => $mapped_type];
1069 $default = call_user_func_array(
1070 $db->options[
'datatype_map_callback'][$type],
1071 [&$db, __FUNCTION__, $parameter]
1073 $types[$type] = $default;
1091 if (!empty($db->options[
'datatype_map'][$type])) {
1092 $type = $db->options[
'datatype_map'][$type];
1093 if (!empty($db->options[
'datatype_map_callback'][$type])) {
1094 $parameter = [
'type' => $type,
'name' => $name,
'field' => $field];
1096 return call_user_func_array(
1097 $db->options[
'datatype_map_callback'][$type],
1098 [&$db, __FUNCTION__, $parameter]
1101 $field[
'type'] = $type;
1104 if (!method_exists($this,
"get{$type}Declaration")) {
1108 return $this->{
"get{$type}Declaration"}($name, $field);
1115 switch ($field[
'type']) {
1117 $length = empty($field[
'length']) ? $db->options[
'default_text_field_length'] : $field[
'length'];
1118 $fixed = empty($field[
'fixed']) ? false : $field[
'fixed'];
1120 return $length ?
'CHAR(' . $length .
')' :
'CHAR(' . $db->options[
'default_text_field_length'] .
')';
1123 return $length ?
'VARCHAR(' . $length .
')' :
'TEXT';
1133 return 'CHAR (' . strlen(
'YYYY-MM-DD') .
')';
1135 return 'CHAR (' . strlen(
'HH:MM:SS') .
')';
1137 return 'CHAR (' . strlen(
'YYYY-MM-DD HH:MM:SS') .
')';
1147 $name = $db->quoteIdentifier($name,
true);
1148 $declaration_options =
'';
1149 $fd = $db->getFieldDefinition();
1151 $declaration_options = $fd->getDeclarationOptions($field);
1165 if (array_key_exists(
'default', $field)) {
1166 if ($field[
'default'] ===
'') {
1169 if (empty($field[
'notnull'])) {
1170 $field[
'default'] =
null;
1173 $field[
'default'] = $valid_default_values[$field[
'type']];
1175 if ($field[
'default'] ===
'' 1176 && isset($db->options[
"portability"])
1177 && ($db->options[
'portability'] & 32)
1179 $field[
'default'] =
' ';
1182 $default =
' DEFAULT ' . $this->
quote($field[
'default'], $field[
'type']);
1183 } elseif (empty($field[
'notnull'])) {
1184 $default =
' DEFAULT NULL';
1187 $notnull = empty($field[
'notnull']) ?
'' :
' NOT NULL';
1189 if (isset($field[
"notnull"]) && $field[
'notnull'] ===
false) {
1196 return $charset . $default . $notnull . $collation;
1229 $notnull = empty($field[
'notnull']) ?
'' :
' NOT NULL';
1230 $name = $db->quoteIdentifier($name,
true);
1239 $notnull = empty($field[
'notnull']) ?
'' :
' NOT NULL';
1240 $name = $db->quoteIdentifier($name,
true);
1282 $type = empty($current[
'type']) ?
null : $current[
'type'];
1284 if (!method_exists($this,
"compare{$type}Definition")) {
1287 if (!empty($db->options[
'datatype_map_callback'][$type])) {
1288 $parameter = [
'current' => $current,
'previous' => $previous];
1290 return call_user_func_array(
1291 $db->options[
'datatype_map_callback'][$type],
1292 [&$db, __FUNCTION__, $parameter]
1299 if (empty($previous[
'type']) || $previous[
'type'] != $type) {
1303 $change = $this->{
"compare{$type}Definition"}($current, $previous);
1305 if ($previous[
'type'] != $type) {
1306 $change[
'type'] =
true;
1309 $previous_notnull = empty($previous[
'notnull']) ? false : $previous[
'notnull'];
1310 $notnull = empty($current[
'notnull']) ? false : $current[
'notnull'];
1311 if ($previous_notnull !== $notnull) {
1312 $change[
'notnull'] =
true;
1315 $alt = $previous_notnull ?
'' :
null;
1316 $previous_default = array_key_exists(
1319 ) ? $previous[
'default'] : $alt;
1320 $alt = $notnull ?
'' :
null;
1321 $default = array_key_exists(
'default', $current) ? $current[
'default'] : $alt;
1322 if ($previous_default !== $default) {
1323 $change[
'default'] =
true;
1335 $previous_unsigned = empty($previous[
'unsigned']) ? false : $previous[
'unsigned'];
1336 $unsigned = empty($current[
'unsigned']) ? false : $current[
'unsigned'];
1337 if ($previous_unsigned != $unsigned) {
1338 $change[
'unsigned'] =
true;
1340 $previous_autoincrement = empty($previous[
'autoincrement']) ? false : $previous[
'autoincrement'];
1341 $autoincrement = empty($current[
'autoincrement']) ? false : $current[
'autoincrement'];
1342 if ($previous_autoincrement != $autoincrement) {
1343 $change[
'autoincrement'] =
true;
1355 $previous_length = empty($previous[
'length']) ? 0 : $previous[
'length'];
1356 $length = empty($current[
'length']) ? 0 : $current[
'length'];
1357 if ($previous_length != $length) {
1358 $change[
'length'] =
true;
1360 $previous_fixed = empty($previous[
'fixed']) ? 0 : $previous[
'fixed'];
1361 $fixed = empty($current[
'fixed']) ? 0 : $current[
'fixed'];
1362 if ($previous_fixed != $fixed) {
1363 $change[
'fixed'] =
true;
1418 public function quote($value, ?
string $type =
null,
bool $quote =
true,
bool $escape_wildcards =
false): string
1428 return (
int) $value;
1431 protected function quoteText(
string $value,
bool $quote,
bool $escape_wildcards): string
1439 $value = $db->escape($value, $escape_wildcards);
1441 return "'" . $value .
"'";
1450 if (is_string($value) && preg_match(
'/^(\w+:\/\/)(.*)$/', $value, $match)) {
1452 if ($match[1] ===
'file://') {
1456 #$value = @fopen($value, 'r'); 1459 if (is_resource($value)) {
1464 while (!@feof($fp)) {
1465 $value .= @fread($fp, $db->options[
'lob_buffer_length']);
1478 protected function quoteLOB($value,
bool $quote,
bool $escape_wildcards): string
1482 return $this->
quoteText($value, $quote, $escape_wildcards);
1487 protected function quoteCLOB($value,
bool $quote,
bool $escape_wildcards): string
1489 return $this->
quoteLOB($value, $quote, $escape_wildcards);
1494 protected function quoteBLOB($value,
bool $quote,
bool $escape_wildcards): string
1496 return $this->
quoteLOB($value, $quote, $escape_wildcards);
1501 return ($value ? 1 : 0);
1504 protected function quoteDate(
string $value,
bool $quote,
bool $escape_wildcards): string
1506 if ($value ===
'CURRENT_DATE') {
1507 return 'CURRENT_DATE';
1510 return $this->
quoteText($value, $quote, $escape_wildcards);
1516 protected function quoteTimestamp(
int $value,
bool $quote,
bool $escape_wildcards): string
1524 protected function quoteTime(
int $value,
bool $quote,
bool $escape_wildcards): string
1529 protected function quoteFloat(
string $value,
bool $quote,
bool $escape_wildcards): ?string
1531 if (preg_match(
'/^(.*)e([-+])(\d+)$/i', $value, $matches)) {
1532 $decimal = $this->
quoteDecimal($matches[1], $quote, $escape_wildcards);
1533 $sign = $matches[2];
1534 $exponent = str_pad($matches[3], 2,
'0', STR_PAD_LEFT);
1535 return $decimal .
'E' . $sign . $exponent;
1538 return $this->
quoteDecimal($value, $quote, $escape_wildcards);
1541 protected function quoteDecimal(
string $value,
bool $quote,
bool $escape_wildcards): ?string
1543 $value = preg_replace(
'/[^\d\.,\-+eE]/',
'', $value);
1544 if (preg_match(
'/[^.0-9]/', (
string) $value) && strpos((
string) $value,
',')) {
1546 if (!strpos((
string) $value,
'.')) {
1548 $value = strrev(str_replace(
',',
'.', strrev((
string) $value)));
1550 } elseif (strpos((
string) $value,
'.') && strpos((
string) $value,
'.') < strpos((
string) $value,
',')) {
1551 $value = str_replace(
'.',
'', $value);
1553 $value = strrev(str_replace(
',',
'.', strrev($value)));
1556 $value = str_replace(
',',
'', $value);
1572 if (preg_match(
'/^(\w+:\/\/)(.*)$/', $file, $match) && $match[1] ===
'file://') {
1576 $fp = @fopen($file,
'wb');
1577 while (!@feof($lob)) {
1578 $result = @fread($lob, $db->options[
'lob_buffer_length']);
1579 $read = strlen($result);
1580 if (@fwrite($fp, $result, $read) !== $read) {
1593 if (is_null($lob[
'value'])) {
1594 $lob[
'value'] = $lob[
'resource'];
1596 $lob[
'loaded'] =
true;
1601 protected function readLOB(array $lob,
int $length): string
1603 return substr((
string) $lob[
'value'], $lob[
'position'], $length);
1611 return $lob[
'endOfLOB'];
1619 $lob_data = stream_get_meta_data($lob);
1620 $lob_index = $lob_data[
'wrapper_data']->lob_index;
1622 if (isset($this->lobs[$lob_index])) {
1623 unset($this->lobs[$lob_index]);
1638 if (!is_null($operator)) {
1639 $operator = strtoupper((
string) $operator);
1640 switch ($operator) {
1643 if (is_null($field)) {
1644 throw new ilDatabaseException(
'case insensitive LIKE matching requires passing the field name');
1646 $db->loadModule(
'Function');
1647 $match = $db->lower($field) .
' LIKE ';
1651 $match = is_null($field) ?
'LIKE ' : $field .
' LIKE ';
1658 foreach ($pattern as $key => $value) {
1659 if ($key % 2 !== 0) {
1662 if ($operator ===
'ILIKE') {
1663 $value = strtolower((
string) $value);
1665 $escaped = $db->escape($value);
1666 $match .= $db->escapePattern($escaped);
1686 $db_type = strtok($field[
'type'],
'(), ');
1687 if (!empty($db->options[
'nativetype_map_callback'][$db_type])) {
1688 return call_user_func_array($db->options[
'nativetype_map_callback'][$db_type], [$db, $field]);
1706 if (!empty($db->options[
'datatype_map'][$type])) {
1707 $type = $db->options[
'datatype_map'][$type];
1708 if (!empty($db->options[
'datatype_map_callback'][$type])) {
1709 $parameter = [
'type' => $type];
1711 return call_user_func_array(
1712 $db->options[
'datatype_map_callback'][$type],
1713 [&$db, __FUNCTION__, $parameter]
compareIntegerDefinition(array $current, array $previous)
compareDecimalDefinition(array $current, array $previous)
compareBooleanDefinition(array $current, array $previous)
getIntegerDeclaration(string $name, array $field)
quoteBoolean(bool $value, bool $quote, bool $escape_wildcards)
compareTimeDefinition(array $current, array $previous)
isAllowedAttribute(string $attribute, string $type)
__construct(protected \ilDBInterface $db_instance)
ilDBPdoFieldDefinition constructor.
quoteCLOB($value, bool $quote, bool $escape_wildcards)
quoteFloat(string $value, bool $quote, bool $escape_wildcards)
mapNativeDatatype(array $field)
getTimeDeclaration(string $name, array $field)
compareDefinition(array $current, array $previous)
quoteInteger($value, bool $quote, bool $escape_wildcards)
Class ilDBPdoFieldDefinition.
getTextDeclaration(string $name, array $field)
array $valid_default_values
array checkTableName(string $table_name)
compareCLOBDefinition(array $current, array $previous)
getTimestampDeclaration(string $name, array $field)
const DEFINITION_COLUMN_NAME
getInternalDeclaration(string $name, array $field)
quoteDecimal(string $value, bool $quote, bool $escape_wildcards)
setAvailableTypes(array $available_types)
mapNativeDatatypeInternal(array $field)
mapPrepareDatatype(string $type)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getDeclarationOptions(array $field)
quoteBLOB($value, bool $quote, bool $escape_wildcards)
getCharsetFieldDeclaration(string $charset)
quoteLOB($value, bool $quote, bool $escape_wildcards)
getFloatDeclaration(string $name, array $field)
checkColumnName(string $column_name)
compareTextDefinition(array $current, array $previous)
compareTimestampDefinition(array $current, array $previous)
writeLOBToFile($lob, string $file)
getDecimalDeclaration(string $name, array $field)
checkIndexName(string $a_name)
compareFloatDefinition(array $current, array $previous)
setAllowedAttributes(array $allowed_attributes)
checkColumnDefinition(array $a_def)
array $allowed_attributes_old
const DEFAULT_DECIMAL_PLACES
quoteText(string $value, bool $quote, bool $escape_wildcards)
const SEQUENCE_COLUMNS_NAME
getCLOBDeclaration(string $name, array $field)
readLOB(array $lob, int $length)
getBooleanDeclaration(string $name, array $field)
array $allowed_attributes
matchPattern(array $pattern, $operator=null, $field=null)
quoteTime(int $value, bool $quote, bool $escape_wildcards)
getDateDeclaration(string $name, array $field)
setReservedMysql(array $reserved_mysql)
quoteTimestamp(int $value, bool $quote, bool $escape_wildcards)
quoteDate(string $value, bool $quote, bool $escape_wildcards)
compareDateDefinition(array $current, array $previous)
getTypeDeclaration(array $field)
setMaxLength(array $max_length)
quote($value, ?string $type=null, bool $quote=true, bool $escape_wildcards=false)
const DEFINITION_TABLE_NAME
compareBLOBDefinition(array $current, array $previous)
getDeclaration(string $type, string $name, array $field)
isReserved(string $table_name)
ilMySQLQueryUtils $query_utils
const DEFAULT_TEXT_LENGTH
getBLOBDeclaration(string $name, array $field)
getCollationFieldDeclaration(string $collation)
static ilDBPdoFieldDefinition $instance