ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDBPdoFieldDefinition.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 abstract class ilDBPdoFieldDefinition
26 {
27  public array $lobs;
28  public const DEFAULT_DECIMAL_PLACES = 2;
29  public const DEFAULT_TEXT_LENGTH = 4000;
30  public const DEFINITION_COLUMN_NAME = "/^[a-z]+[_a-z0-9]*$/";
31  public const DEFINITION_TABLE_NAME = "/^[a-z]+[_a-z0-9]*$/";
32  public const INDEX_FORMAT = '%s_idx';
33  public const SEQUENCE_COLUMNS_NAME = 'sequence';
34  public const SEQUENCE_FORMAT = '%s_seq';
35  public const T_BLOB = 'blob';
36  public const T_CLOB = 'clob';
37  public const T_DATE = 'date';
38  public const T_DATETIME = 'datetime';
39  public const T_FLOAT = 'float';
40  public const T_INTEGER = 'integer';
41  public const T_TEXT = 'text';
42  public const T_TIME = 'time';
43  public const T_TIMESTAMP = 'timestamp';
44  protected static \ilDBPdoFieldDefinition $instance;
48  public array $allowed_attributes_old = [
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'],
57  ];
61  public array $allowed_attributes = [
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"],
70  ];
71  protected array $max_length = [
72  self::T_INTEGER => [1, 2, 3, 4, 8],
73  self::T_TEXT => 4000,
74  ];
78  protected array $available_types = [
79  self::T_TEXT,
80  self::T_INTEGER,
81  self::T_FLOAT,
82  self::T_DATE,
83  self::T_TIME,
84  self::T_TIMESTAMP,
85  self::T_CLOB,
86  self::T_BLOB,
87  ];
91  protected array $reserved_mysql = [
92  "ACCESSIBLE",
93  "ACCOUNT",
94  "ACTION",
95  "ADD",
96  "AFTER",
97  "AGAINST",
98  "AGGREGATE",
99  "ALGORITHM",
100  "ALL",
101  "ALTER",
102  "ALWAYS",
103  "ANALYSE",
104  "ANALYZE",
105  "AND",
106  "ANY",
107  "AS",
108  "ASC",
109  "ASCII",
110  "ASENSITIVE",
111  "AT",
112  "AUTHORS",
113  "AUTOEXTEND_SIZE",
114  "AUTO_INCREMENT",
115  "AVG",
116  "AVG_ROW_LENGTH",
117  "BACKUP",
118  "BEFORE",
119  "BEGIN",
120  "BETWEEN",
121  "BIGINT",
122  "BINARY",
123  "BINLOG",
124  "BIT",
125  "BLOB",
126  "BLOCK",
127  "BOOL",
128  "BOOLEAN",
129  "BOTH",
130  "BTREE",
131  "BY",
132  "BYTE",
133  "CACHE",
134  "CALL",
135  "CASCADE",
136  "CASCADED",
137  "CASE",
138  "CATALOG_NAME",
139  "CHAIN",
140  "CHANGE",
141  "CHANGED",
142  "CHANNEL",
143  "CHAR",
144  "CHARACTER",
145  "CHARSET",
146  "CHECK",
147  "CHECKSUM",
148  "CIPHER",
149  "CLASS_ORIGIN",
150  "CLIENT",
151  "CLOSE",
152  "COALESCE",
153  "CODE",
154  "COLLATE",
155  "COLLATION",
156  "COLUMN",
157  "COLUMNS",
158  "COLUMN_FORMAT",
159  "COLUMN_NAME",
160  "COMMENT",
161  "COMMIT",
162  "COMMITTED",
163  "COMPACT",
164  "COMPLETION",
165  "COMPRESSED",
166  "COMPRESSION",
167  "CONCURRENT",
168  "CONDITION",
169  "CONNECTION",
170  "CONSISTENT",
171  "CONSTRAINT",
172  "CONSTRAINT_CATALOG",
173  "CONSTRAINT_NAME",
174  "CONSTRAINT_SCHEMA",
175  "CONTAINS",
176  "CONTEXT",
177  "CONTINUE",
178  "CONTRIBUTORS",
179  "CONVERT",
180  "CPU",
181  "CREATE",
182  "CROSS",
183  "CUBE",
184  "CURRENT",
185  "CURRENT_DATE",
186  "CURRENT_TIME",
187  "CURRENT_TIMESTAMP",
188  "CURRENT_USER",
189  "CURSOR",
190  "CURSOR_NAME",
191  "DATA",
192  "DATABASE",
193  "DATABASES",
194  "DATAFILE",
195  "DATE",
196  "DATETIME",
197  "DAY",
198  "DAY_HOUR",
199  "DAY_MICROSECOND",
200  "DAY_MINUTE",
201  "DAY_SECOND",
202  "DEALLOCATE",
203  "DEC",
204  "DECIMAL",
205  "DECLARE",
206  "DEFAULT",
207  "DEFAULT_AUTH",
208  "DEFINER",
209  "DELAYED",
210  "DELAY_KEY_WRITE",
211  "DELETE",
212  "DESC",
213  "DESCRIBE",
214  "DES_KEY_FILE",
215  "DETERMINISTIC",
216  "DIAGNOSTICS",
217  "DIRECTORY",
218  "DISABLE",
219  "DISCARD",
220  "DISK",
221  "DISTINCT",
222  "DISTINCTROW",
223  "DIV",
224  "DO",
225  "DOUBLE",
226  "DROP",
227  "DUAL",
228  "DUMPFILE",
229  "DUPLICATE",
230  "DYNAMIC",
231  "EACH",
232  "ELSE",
233  "ELSEIF",
234  "ENABLE",
235  "ENCLOSED",
236  "ENCRYPTION",
237  "END",
238  "ENDS",
239  "ENGINE",
240  "ENGINES",
241  "ENUM",
242  "ERROR",
243  "ERRORS",
244  "ESCAPE",
245  "ESCAPED",
246  "EVENT",
247  "EVENTS",
248  "EVERY",
249  "EXCHANGE",
250  "EXECUTE",
251  "EXISTS",
252  "EXIT",
253  "EXPANSION",
254  "EXPIRE",
255  "EXPLAIN",
256  "EXPORT",
257  "EXTENDED",
258  "EXTENT_SIZE",
259  "FALSE",
260  "FAST",
261  "FAULTS",
262  "FETCH",
263  "FIELDS",
264  "FILE",
265  "FILE_BLOCK_SIZE",
266  "FILTER",
267  "FIRST",
268  "FIXED",
269  "FLOAT",
270  "FLOAT4",
271  "FLOAT8",
272  "FLUSH",
273  "FOLLOWS",
274  "FOR",
275  "FORCE",
276  "FOREIGN",
277  "FORMAT",
278  "FOUND",
279  "FROM",
280  "FULL",
281  "FULLTEXT",
282  "FUNCTION",
283  "GENERAL",
284  "GENERATED",
285  "GEOMETRY",
286  "GEOMETRYCOLLECTION",
287  "GET",
288  "GET_FORMAT",
289  "GLOBAL",
290  "GRANT",
291  "GRANTS",
292  "GROUP",
293  "GROUP_REPLICATION",
294  "HANDLER",
295  "HASH",
296  "HAVING",
297  "HELP",
298  "HIGH_PRIORITY",
299  "HOST",
300  "HOSTS",
301  "HOUR",
302  "HOUR_MICROSECOND",
303  "HOUR_MINUTE",
304  "HOUR_SECOND",
305  "IDENTIFIED",
306  "IF",
307  "IGNORE",
308  "IGNORE_SERVER_IDS",
309  "IMPORT",
310  "IN",
311  "INDEX",
312  "INDEXES",
313  "INFILE",
314  "INITIAL_SIZE",
315  "INNER",
316  "INOUT",
317  "INSENSITIVE",
318  "INSERT",
319  "INSERT_METHOD",
320  "INSTALL",
321  "INSTANCE",
322  "INT",
323  "INT1",
324  "INT2",
325  "INT3",
326  "INT4",
327  "INT8",
328  "INTEGER",
329  "INTERVAL",
330  "INTO",
331  "INVOKER",
332  "IO",
333  "IO_AFTER_GTIDS",
334  "IO_BEFORE_GTIDS",
335  "IO_THREAD",
336  "IPC",
337  "IS",
338  "ISOLATION",
339  "ISSUER",
340  "ITERATE",
341  "JOIN",
342  "JSON",
343  "KEY",
344  "KEYS",
345  "KEY_BLOCK_SIZE",
346  "KILL",
347  "LANGUAGE",
348  "LAST",
349  "LEADING",
350  "LEAVE",
351  "LEAVES",
352  "LEFT",
353  "LESS",
354  "LEVEL",
355  "LIKE",
356  "LIMIT",
357  "LINEAR",
358  "LINES",
359  "LINESTRING",
360  "LIST",
361  "LOAD",
362  "LOCAL",
363  "LOCALTIME",
364  "LOCALTIMESTAMP",
365  "LOCK",
366  "LOCKS",
367  "LOGFILE",
368  "LOGS",
369  "LONG",
370  "LONGBLOB",
371  "LONGTEXT",
372  "LOOP",
373  "LOW_PRIORITY",
374  "MASTER",
375  "MASTER_AUTO_POSITION",
376  "MASTER_BIND",
377  "MASTER_CONNECT_RETRY",
378  "MASTER_DELAY",
379  "MASTER_HEARTBEAT_PERIOD",
380  "MASTER_HOST",
381  "MASTER_LOG_FILE",
382  "MASTER_LOG_POS",
383  "MASTER_PASSWORD",
384  "MASTER_PORT",
385  "MASTER_RETRY_COUNT",
386  "MASTER_SERVER_ID",
387  "MASTER_SSL",
388  "MASTER_SSL_CA",
389  "MASTER_SSL_CAPATH",
390  "MASTER_SSL_CERT",
391  "MASTER_SSL_CIPHER",
392  "MASTER_SSL_CRL",
393  "MASTER_SSL_CRLPATH",
394  "MASTER_SSL_KEY",
395  "MASTER_SSL_VERIFY_SERVER_CERT",
396  "MASTER_TLS_VERSION",
397  "MASTER_USER",
398  "MATCH",
399  "MAXVALUE",
400  "MAX_CONNECTIONS_PER_HOUR",
401  "MAX_QUERIES_PER_HOUR",
402  "MAX_ROWS",
403  "MAX_SIZE",
404  "MAX_STATEMENT_TIME",
405  "MAX_UPDATES_PER_HOUR",
406  "MAX_USER_CONNECTIONS",
407  "MEDIUM",
408  "MEDIUMBLOB",
409  "MEDIUMINT",
410  "MEDIUMTEXT",
411  "MEMORY",
412  "MERGE",
413  "MESSAGE_TEXT",
414  "MICROSECOND",
415  "MIDDLEINT",
416  "MIGRATE",
417  "MINUTE",
418  "MINUTE_MICROSECOND",
419  "MINUTE_SECOND",
420  "MIN_ROWS",
421  "MOD",
422  "MODE",
423  "MODIFIES",
424  "MODIFY",
425  "MONTH",
426  "MULTILINESTRING",
427  "MULTIPOINT",
428  "MULTIPOLYGON",
429  "MUTEX",
430  "MYSQL_ERRNO",
431  "NAME",
432  "NAMES",
433  "NATIONAL",
434  "NATURAL",
435  "NCHAR",
436  "NDB",
437  "NDBCLUSTER",
438  "NEVER",
439  "NEW",
440  "NEXT",
441  "NO",
442  "NODEGROUP",
443  "NONBLOCKING",
444  "NONE",
445  "NOT",
446  "NO_WAIT",
447  "NO_WRITE_TO_BINLOG",
448  "NULL",
449  "NUMBER",
450  "NUMERIC",
451  "NVARCHAR",
452  "OFFSET",
453  "OLD_PASSWORD",
454  "ON",
455  "ONE",
456  "ONE_SHOT",
457  "ONLY",
458  "OPEN",
459  "OPTIMIZE",
460  "OPTIMIZER_COSTS",
461  "OPTION",
462  "OPTIONALLY",
463  "OPTIONS",
464  "OR",
465  "ORDER",
466  "OUT",
467  "OUTER",
468  "OUTFILE",
469  "OWNER",
470  "PACK_KEYS",
471  "PAGE",
472  "PARSER",
473  "PARSE_GCOL_EXPR",
474  "PARTIAL",
475  "PARTITION",
476  "PARTITIONING",
477  "PARTITIONS",
478  "PASSWORD",
479  "PHASE",
480  "PLUGIN",
481  "PLUGINS",
482  "PLUGIN_DIR",
483  "POINT",
484  "POLYGON",
485  "PORT",
486  "PRECEDES",
487  "PRECISION",
488  "PREPARE",
489  "PRESERVE",
490  "PREV",
491  "PRIMARY",
492  "PRIVILEGES",
493  "PROCEDURE",
494  "PROCESSLIST",
495  "PROFILE",
496  "PROFILES",
497  "PROXY",
498  "PURGE",
499  "QUARTER",
500  "QUERY",
501  "QUICK",
502  "RANGE",
503  "READ",
504  "READS",
505  "READ_ONLY",
506  "READ_WRITE",
507  "REAL",
508  "REBUILD",
509  "RECOVER",
510  "REDOFILE",
511  "REDO_BUFFER_SIZE",
512  "REDUNDANT",
513  "REFERENCES",
514  "REGEXP",
515  "RELAY",
516  "RELAYLOG",
517  "RELAY_LOG_FILE",
518  "RELAY_LOG_POS",
519  "RELAY_THREAD",
520  "RELEASE",
521  "RELOAD",
522  "REMOVE",
523  "RENAME",
524  "REORGANIZE",
525  "REPAIR",
526  "REPEAT",
527  "REPEATABLE",
528  "REPLACE",
529  "REPLICATE_DO_DB",
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",
536  "REPLICATION",
537  "REQUIRE",
538  "RESET",
539  "RESIGNAL",
540  "RESTORE",
541  "RESTRICT",
542  "RESUME",
543  "RETURN",
544  "RETURNED_SQLSTATE",
545  "RETURNS",
546  "REVERSE",
547  "REVOKE",
548  "RIGHT",
549  "RLIKE",
550  "ROLLBACK",
551  "ROLLUP",
552  "ROTATE",
553  "ROUTINE",
554  "ROW",
555  "ROWS",
556  "ROW_COUNT",
557  "ROW_FORMAT",
558  "RTREE",
559  "SAVEPOINT",
560  "SCHEDULE",
561  "SCHEMA",
562  "SCHEMAS",
563  "SCHEMA_NAME",
564  "SECOND",
565  "SECOND_MICROSECOND",
566  "SECURITY",
567  "SELECT",
568  "SENSITIVE",
569  "SEPARATOR",
570  "SERIAL",
571  "SERIALIZABLE",
572  "SERVER",
573  "SESSION",
574  "SET",
575  "SHARE",
576  "SHOW",
577  "SHUTDOWN",
578  "SIGNAL",
579  "SIGNED",
580  "SIMPLE",
581  "SLAVE",
582  "SLOW",
583  "SMALLINT",
584  "SNAPSHOT",
585  "SOCKET",
586  "SOME",
587  "SONAME",
588  "SOUNDS",
589  "SOURCE",
590  "SPATIAL",
591  "SPECIFIC",
592  "SQL",
593  "SQLEXCEPTION",
594  "SQLSTATE",
595  "SQLWARNING",
596  "SQL_AFTER_GTIDS",
597  "SQL_AFTER_MTS_GAPS",
598  "SQL_BEFORE_GTIDS",
599  "SQL_BIG_RESULT",
600  "SQL_BUFFER_RESULT",
601  "SQL_CACHE",
602  "SQL_CALC_FOUND_ROWS",
603  "SQL_NO_CACHE",
604  "SQL_SMALL_RESULT",
605  "SQL_THREAD",
606  "SQL_TSI_DAY",
607  "SQL_TSI_HOUR",
608  "SQL_TSI_MINUTE",
609  "SQL_TSI_MONTH",
610  "SQL_TSI_QUARTER",
611  "SQL_TSI_SECOND",
612  "SQL_TSI_WEEK",
613  "SQL_TSI_YEAR",
614  "SSL",
615  "STACKED",
616  "START",
617  "STARTING",
618  "STARTS",
619  "STATS_AUTO_RECALC",
620  "STATS_PERSISTENT",
621  "STATS_SAMPLE_PAGES",
622  "STATUS",
623  "STOP",
624  "STORAGE",
625  "STORED",
626  "STRAIGHT_JOIN",
627  "STRING",
628  "SUBCLASS_ORIGIN",
629  "SUBJECT",
630  "SUBPARTITION",
631  "SUBPARTITIONS",
632  "SUPER",
633  "SUSPEND",
634  "SWAPS",
635  "SWITCHES",
636  "TABLE",
637  "TABLES",
638  "TABLESPACE",
639  "TABLE_CHECKSUM",
640  "TABLE_NAME",
641  "TEMPORARY",
642  "TEMPTABLE",
643  "TERMINATED",
644  "TEXT",
645  "THAN",
646  "THEN",
647  "TIME",
648  "TIMESTAMP",
649  "TIMESTAMPADD",
650  "TIMESTAMPDIFF",
651  "TINYBLOB",
652  "TINYINT",
653  "TINYTEXT",
654  "TO",
655  "TRAILING",
656  "TRANSACTION",
657  "TRIGGER",
658  "TRIGGERS",
659  "TRUE",
660  "TRUNCATE",
661  "TYPE",
662  "TYPES",
663  "UNCOMMITTED",
664  "UNDEFINED",
665  "UNDO",
666  "UNDOFILE",
667  "UNDO_BUFFER_SIZE",
668  "UNICODE",
669  "UNINSTALL",
670  "UNION",
671  "UNIQUE",
672  "UNKNOWN",
673  "UNLOCK",
674  "UNSIGNED",
675  "UNTIL",
676  "UPDATE",
677  "UPGRADE",
678  "USAGE",
679  "USE",
680  "USER",
681  "USER_RESOURCES",
682  "USE_FRM",
683  "USING",
684  "UTC_DATE",
685  "UTC_TIME",
686  "UTC_TIMESTAMP",
687  "VALIDATION",
688  "VALUE",
689  "VALUES",
690  "VARBINARY",
691  "VARCHAR",
692  "VARCHARACTER",
693  "VARIABLES",
694  "VARYING",
695  "VIEW",
696  "VIRTUAL",
697  "WAIT",
698  "WARNINGS",
699  "WEEK",
700  "WEIGHT_STRING",
701  "WHEN",
702  "WHERE",
703  "WHILE",
704  "WITH",
705  "WITHOUT",
706  "WORK",
707  "WRAPPER",
708  "WRITE",
709  "X509",
710  "XA",
711  "XID",
712  "XML",
713  "XOR",
714  "YEAR",
715  "YEAR_MONTH",
716  "ZEROFILL",
717  ];
721  protected array $reserved_postgres = [
722  "ALL",
723  "ANALYSE",
724  "ANALYZE",
725  "AND",
726  "ANY",
727  "ARRAY",
728  "AS",
729  "ASC",
730  "ASYMMETRIC",
731  "AUTHORIZATION",
732  "BETWEEN",
733  "BINARY",
734  "BOTH",
735  "CASE",
736  "CAST",
737  "CHECK",
738  "COLLATE",
739  "COLUMN",
740  "CONSTRAINT",
741  "CREATE",
742  "CROSS",
743  "CURRENT_DATE",
744  "CURRENT_ROLE",
745  "CURRENT_TIME",
746  "CURRENT_TIMESTAMP",
747  "CURRENT_USER",
748  "DEFAULT",
749  "DEFERRABLE",
750  "DESC",
751  "DISTINCT",
752  "DO",
753  "ELSE",
754  "END",
755  "EXCEPT",
756  "FALSE",
757  "FOR",
758  "FOREIGN",
759  "FREEZE",
760  "FROM",
761  "FULL",
762  "GRANT",
763  "GROUP",
764  "HAVING",
765  "ILIKE",
766  "IN",
767  "INITIALLY",
768  "INNER",
769  "INTERSECT",
770  "INTO",
771  "IS",
772  "ISNULL",
773  "JOIN",
774  "LEADING",
775  "LEFT",
776  "LIKE",
777  "LIMIT",
778  "LOCALTIME",
779  "LOCALTIMESTAMP",
780  "NATURAL",
781  "NEW",
782  "NOT",
783  "NOTNULL",
784  "NULL",
785  "OFF",
786  "OFFSET",
787  "OLD",
788  "ON",
789  "ONLY",
790  "OR",
791  "ORDER",
792  "OUTER",
793  "OVERLAPS",
794  "PLACING",
795  "PRIMARY",
796  "REFERENCES",
797  "RETURNING",
798  "RIGHT",
799  "SELECT",
800  "SESSION_USER",
801  "SIMILAR",
802  "SOME",
803  "SYMMETRIC",
804  "TABLE",
805  "THEN",
806  "TO",
807  "TRAILING",
808  "TRUE",
809  "UNION",
810  "UNIQUE",
811  "USER",
812  "USING",
813  "VERBOSE",
814  "WHEN",
815  "WHERE",
816  "WITH",
817  ];
822 
826  public function __construct(protected \ilDBInterface $db_instance)
827  {
828  }
829 
830  protected function getQueryUtils(): \ilMySQLQueryUtils
831  {
832  if ($this->query_utils === null) {
833  $this->query_utils = new ilMySQLQueryUtils($this->db_instance);
834  }
835 
836  return $this->query_utils;
837  }
838 
839  protected array $valid_default_values = [
840  'text' => '',
841  'boolean' => true,
842  'integer' => 0,
843  'decimal' => 0.0,
844  'float' => 0.0,
845  'timestamp' => '1970-01-01 00:00:00',
846  'time' => '00:00:00',
847  'date' => '1970-01-01',
848  'clob' => '',
849  'blob' => '',
850  ];
851 
855  public function checkTableName(string $table_name): bool
856  {
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.');
859  }
860 
861  if ($this->isReserved($table_name)) {
862  throw new ilDatabaseException("Invalid table name '" . $table_name . "' (Reserved Word).");
863  }
864 
865  if (stripos($table_name, "sys_") === 0) {
866  throw new ilDatabaseException("Invalid table name '" . $table_name . "'. Name must not start with 'sys_'.");
867  }
868 
869  if (strlen($table_name) > 22) {
870  throw new ilDatabaseException("Invalid table name '" . $table_name . "'. Maximum table identifer length is 22 bytes.");
871  }
872 
873  return true;
874  }
875 
876  public function isReserved(string $table_name): bool
877  {
878  return false;
879  }
880 
884  public function getAllReserved(): array
885  {
886  return $this->getReservedMysql();
887  }
888 
892  public function getReservedMysql(): array
893  {
894  return $this->reserved_mysql;
895  }
896 
900  public function setReservedMysql(array $reserved_mysql): void
901  {
902  $this->reserved_mysql = $reserved_mysql;
903  }
904 
905 
909  public function checkColumnName(string $column_name): bool
910  {
911  if (!preg_match("/^[a-z]+[_a-z0-9]*$/", $column_name)) {
912  throw new ilDatabaseException("Invalid column name '" . $column_name
913  . "'. Column name must only contain _a-z0-9 and must start with a-z.");
914  }
915 
916  if ($this->isReserved($column_name)) {
917  throw new ilDatabaseException("Invalid column name '" . $column_name . "' (Reserved Word).");
918  }
919 
920  if (stripos($column_name, "sys_") === 0) {
921  throw new ilDatabaseException("Invalid column name '" . $column_name . "'. Name must not start with 'sys_'.");
922  }
923 
924  if (strlen($column_name) > 30) {
925  throw new ilDatabaseException("Invalid column name '" . $column_name . "'. Maximum column identifer length is 30 bytes.");
926  }
927 
928  return true;
929  }
930 
934  public function checkIndexName(string $a_name): bool
935  {
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.");
938  }
939 
940  if ($this->isReserved($a_name)) {
941  throw new ilDatabaseException("Invalid column name '" . $a_name . "' (Reserved Word).");
942  }
943 
944  if (strlen($a_name) > 3) {
945  throw new ilDatabaseException("Invalid index name '" . $a_name . "'. Maximum index identifer length is 3 bytes.");
946  }
947 
948  return true;
949  }
950 
954  public function checkColumnDefinition(array $a_def): bool
955  {
956  // check valid type
957  if (!in_array($a_def["type"], $this->getAvailableTypes(), true)) {
958  switch ($a_def["type"]) {
959  case "boolean":
960  throw new ilDatabaseException("Invalid column type '" . $a_def["type"] . "'. Use integer(1) instead.");
961 
962  case "decimal":
963  throw new ilDatabaseException("Invalid column type '" . $a_def["type"] . "'. Use float or integer instead.");
964 
965  default:
966  throw new ilDatabaseException("Invalid column type '" . $a_def["type"] . "'. Allowed types are: "
967  . implode(', ', $this->getAvailableTypes()));
968  }
969  }
970 
971  // check used attributes
972  $allowed_attributes = $this->getAllowedAttributes();
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"] . "'.");
976  }
977  }
978 
979  // type specific checks
980  $max_length = $this->getMaxLength();
981  switch ($a_def["type"]) {
982  case self::T_TEXT:
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] . ".");
986  }
987  break;
988 
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).");
993  }
994  if ($a_def["unsigned"] ?? null) {
995  throw new ilDatabaseException("Unsigned attribut must not be true for type integer.");
996  }
997  break;
998  }
999 
1000  return true;
1001  }
1002 
1003  public function isAllowedAttribute(string $attribute, string $type): bool
1004  {
1005  return in_array($attribute, $this->allowed_attributes[$type], true);
1006  }
1007 
1011  public function getAvailableTypes(): array
1012  {
1013  return $this->available_types;
1014  }
1015 
1019  public function setAvailableTypes(array $available_types): void
1020  {
1021  $this->available_types = $available_types;
1022  }
1023 
1027  public function getAllowedAttributes(): array
1028  {
1030  }
1031 
1035  public function setAllowedAttributes(array $allowed_attributes): void
1036  {
1037  $this->allowed_attributes = $allowed_attributes;
1038  }
1039 
1040  public function getMaxLength(): array
1041  {
1042  return $this->max_length;
1043  }
1044 
1045  public function setMaxLength(array $max_length): void
1046  {
1047  $this->max_length = $max_length;
1048  }
1049 
1050  protected function getDBInstance(): \ilDBInterface
1051  {
1052  return $this->db_instance;
1053  }
1054 
1058  public function getValidTypes(): array
1059  {
1060  $types = $this->valid_default_values;
1061  $db = $this->getDBInstance();
1062 
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]
1072  );
1073  $types[$type] = $default;
1074  }
1075  }
1076  }
1077 
1078  return $types;
1079  }
1080 
1081 
1082 
1087  public function getDeclaration(string $type, string $name, array $field)
1088  {
1089  $db = $this->getDBInstance();
1090 
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];
1095 
1096  return call_user_func_array(
1097  $db->options['datatype_map_callback'][$type],
1098  [&$db, __FUNCTION__, $parameter]
1099  );
1100  }
1101  $field['type'] = $type;
1102  }
1103 
1104  if (!method_exists($this, "get{$type}Declaration")) {
1105  throw new ilDatabaseException('type not defined: ' . $type);
1106  }
1107 
1108  return $this->{"get{$type}Declaration"}($name, $field);
1109  }
1110 
1111  public function getTypeDeclaration(array $field): string
1112  {
1113  $db = $this->getDBInstance();
1114 
1115  switch ($field['type']) {
1116  case 'text':
1117  $length = empty($field['length']) ? $db->options['default_text_field_length'] : $field['length'];
1118  $fixed = empty($field['fixed']) ? false : $field['fixed'];
1119  if ($fixed) {
1120  return $length ? 'CHAR(' . $length . ')' : 'CHAR(' . $db->options['default_text_field_length'] . ')';
1121  }
1122 
1123  return $length ? 'VARCHAR(' . $length . ')' : 'TEXT';
1124  case 'clob':
1125  case 'decimal':
1126  case 'float':
1127  case 'blob':
1128  return 'TEXT';
1129  case 'integer':
1130  case 'boolean':
1131  return 'INT';
1132  case 'date':
1133  return 'CHAR (' . strlen('YYYY-MM-DD') . ')';
1134  case 'time':
1135  return 'CHAR (' . strlen('HH:MM:SS') . ')';
1136  case 'timestamp':
1137  return 'CHAR (' . strlen('YYYY-MM-DD HH:MM:SS') . ')';
1138  }
1139 
1140  return '';
1141  }
1142 
1143  protected function getInternalDeclaration(string $name, array $field): string
1144  {
1145  $db = $this->getDBInstance();
1146 
1147  $name = $db->quoteIdentifier($name, true);
1148  $declaration_options = '';
1149  $fd = $db->getFieldDefinition();
1150  if ($fd !== null) {
1151  $declaration_options = $fd->getDeclarationOptions($field);
1152  }
1153 
1154  return $name . ' ' . $this->getTypeDeclaration($field) . $declaration_options;
1155  }
1156 
1160  protected function getDeclarationOptions(array $field): string
1161  {
1162  $charset = empty($field['charset']) ? '' : ' ' . $this->getCharsetFieldDeclaration($field['charset']);
1163 
1164  $default = '';
1165  if (array_key_exists('default', $field)) {
1166  if ($field['default'] === '') {
1167  $db = $this->getDBInstance();
1168 
1169  if (empty($field['notnull'])) {
1170  $field['default'] = null;
1171  } else {
1172  $valid_default_values = $this->getValidTypes();
1173  $field['default'] = $valid_default_values[$field['type']];
1174  }
1175  if ($field['default'] === ''
1176  && isset($db->options["portability"])
1177  && ($db->options['portability'] & 32)
1178  ) {
1179  $field['default'] = ' ';
1180  }
1181  }
1182  $default = ' DEFAULT ' . $this->quote($field['default'], $field['type']);
1183  } elseif (empty($field['notnull'])) {
1184  $default = ' DEFAULT NULL';
1185  }
1186 
1187  $notnull = empty($field['notnull']) ? '' : ' NOT NULL';
1188  // alex patch 28 Nov 2011 start
1189  if (isset($field["notnull"]) && $field['notnull'] === false) {
1190  $notnull = " NULL";
1191  }
1192  // alex patch 28 Nov 2011 end
1193 
1194  $collation = empty($field['collation']) ? '' : ' ' . $this->getCollationFieldDeclaration($field['collation']);
1195 
1196  return $charset . $default . $notnull . $collation;
1197  }
1198 
1199  protected function getCharsetFieldDeclaration(string $charset): string
1200  {
1201  return '';
1202  }
1203 
1204  protected function getCollationFieldDeclaration(string $collation): string
1205  {
1206  return '';
1207  }
1208 
1212  protected function getIntegerDeclaration(string $name, array $field): string
1213  {
1214  return $this->getInternalDeclaration($name, $field);
1215  }
1216 
1220  protected function getTextDeclaration(string $name, array $field): string
1221  {
1222  return $this->getInternalDeclaration($name, $field);
1223  }
1224 
1225  protected function getCLOBDeclaration(string $name, array $field): string
1226  {
1227  $db = $this->getDBInstance();
1228 
1229  $notnull = empty($field['notnull']) ? '' : ' NOT NULL';
1230  $name = $db->quoteIdentifier($name, true);
1231 
1232  return $name . ' ' . $this->getTypeDeclaration($field) . $notnull;
1233  }
1234 
1235  protected function getBLOBDeclaration(string $name, array $field): string
1236  {
1237  $db = $this->getDBInstance();
1238 
1239  $notnull = empty($field['notnull']) ? '' : ' NOT NULL';
1240  $name = $db->quoteIdentifier($name, true);
1241 
1242  return $name . ' ' . $this->getTypeDeclaration($field) . $notnull;
1243  }
1244 
1245  protected function getBooleanDeclaration(string $name, array $field): string
1246  {
1247  return $this->getInternalDeclaration($name, $field);
1248  }
1249 
1250  protected function getDateDeclaration(string $name, array $field): string
1251  {
1252  return $this->getInternalDeclaration($name, $field);
1253  }
1254 
1255  protected function getTimestampDeclaration(string $name, array $field): string
1256  {
1257  return $this->getInternalDeclaration($name, $field);
1258  }
1259 
1260  protected function getTimeDeclaration(string $name, array $field): string
1261  {
1262  return $this->getInternalDeclaration($name, $field);
1263  }
1264 
1265  protected function getFloatDeclaration(string $name, array $field): string
1266  {
1267  return $this->getInternalDeclaration($name, $field);
1268  }
1269 
1270  protected function getDecimalDeclaration(string $name, array $field): string
1271  {
1272  return $this->getInternalDeclaration($name, $field);
1273  }
1274 
1280  public function compareDefinition(array $current, array $previous): array
1281  {
1282  $type = empty($current['type']) ? null : $current['type'];
1283 
1284  if (!method_exists($this, "compare{$type}Definition")) {
1285  $db = $this->getDBInstance();
1286 
1287  if (!empty($db->options['datatype_map_callback'][$type])) {
1288  $parameter = ['current' => $current, 'previous' => $previous];
1289 
1290  return call_user_func_array(
1291  $db->options['datatype_map_callback'][$type],
1292  [&$db, __FUNCTION__, $parameter]
1293  );
1294  }
1295 
1296  throw new ilDatabaseException('type "' . $current['type'] . '" is not yet supported');
1297  }
1298 
1299  if (empty($previous['type']) || $previous['type'] != $type) {
1300  return $current;
1301  }
1302 
1303  $change = $this->{"compare{$type}Definition"}($current, $previous);
1304 
1305  if ($previous['type'] != $type) {
1306  $change['type'] = true;
1307  }
1308 
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;
1313  }
1314 
1315  $alt = $previous_notnull ? '' : null;
1316  $previous_default = array_key_exists(
1317  'default',
1318  $previous
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;
1324  }
1325 
1326  return $change;
1327  }
1328 
1332  protected function compareIntegerDefinition(array $current, array $previous): array
1333  {
1334  $change = [];
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;
1339  }
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;
1344  }
1345 
1346  return $change;
1347  }
1348 
1352  protected function compareTextDefinition(array $current, array $previous): array
1353  {
1354  $change = [];
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;
1359  }
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;
1364  }
1365 
1366  return $change;
1367  }
1368 
1372  protected function compareCLOBDefinition(array $current, array $previous): array
1373  {
1374  return $this->compareTextDefinition($current, $previous);
1375  }
1376 
1380  protected function compareBLOBDefinition(array $current, array $previous): array
1381  {
1382  return $this->compareTextDefinition($current, $previous);
1383  }
1384 
1385  protected function compareDateDefinition(array $current, array $previous): array
1386  {
1387  return [];
1388  }
1389 
1390  protected function compareTimeDefinition(array $current, array $previous): array
1391  {
1392  return [];
1393  }
1394 
1395  protected function compareTimestampDefinition(array $current, array $previous): array
1396  {
1397  return [];
1398  }
1399 
1400  protected function compareBooleanDefinition(array $current, array $previous): array
1401  {
1402  return [];
1403  }
1404 
1405  protected function compareFloatDefinition(array $current, array $previous): array
1406  {
1407  return [];
1408  }
1409 
1410  protected function compareDecimalDefinition(array $current, array $previous): array
1411  {
1412  return [];
1413  }
1414 
1418  public function quote($value, ?string $type = null, bool $quote = true, bool $escape_wildcards = false): string
1419  {
1420  return $this->getDBInstance()->quote($value, $type ?? '');
1421  }
1422 
1426  protected function quoteInteger($value, bool $quote, bool $escape_wildcards): int
1427  {
1428  return (int) $value;
1429  }
1430 
1431  protected function quoteText(string $value, bool $quote, bool $escape_wildcards): string
1432  {
1433  if (!$quote) {
1434  return $value;
1435  }
1436 
1437  $db = $this->getDBInstance();
1438 
1439  $value = $db->escape($value, $escape_wildcards);
1440 
1441  return "'" . $value . "'";
1442  }
1443 
1447  protected function readFile($value): string
1448  {
1449  $close = false;
1450  if (is_string($value) && preg_match('/^(\w+:\/\/)(.*)$/', $value, $match)) {
1451  $close = true;
1452  if ($match[1] === 'file://') {
1453  $value = $match[2];
1454  }
1455  // do not try to open urls
1456  #$value = @fopen($value, 'r');
1457  }
1458 
1459  if (is_resource($value)) {
1460  $db = $this->getDBInstance();
1461 
1462  $fp = $value;
1463  $value = '';
1464  while (!@feof($fp)) {
1465  $value .= @fread($fp, $db->options['lob_buffer_length']);
1466  }
1467  if ($close) {
1468  @fclose($fp);
1469  }
1470  }
1471 
1472  return $value;
1473  }
1474 
1478  protected function quoteLOB($value, bool $quote, bool $escape_wildcards): string
1479  {
1480  $value = $this->readFile($value);
1481 
1482  return $this->quoteText($value, $quote, $escape_wildcards);
1483  }
1487  protected function quoteCLOB($value, bool $quote, bool $escape_wildcards): string
1488  {
1489  return $this->quoteLOB($value, $quote, $escape_wildcards);
1490  }
1494  protected function quoteBLOB($value, bool $quote, bool $escape_wildcards): string
1495  {
1496  return $this->quoteLOB($value, $quote, $escape_wildcards);
1497  }
1498 
1499  protected function quoteBoolean(bool $value, bool $quote, bool $escape_wildcards): int
1500  {
1501  return ($value ? 1 : 0);
1502  }
1503 
1504  protected function quoteDate(string $value, bool $quote, bool $escape_wildcards): string
1505  {
1506  if ($value === 'CURRENT_DATE') {
1507  return 'CURRENT_DATE';
1508  }
1509 
1510  return $this->quoteText($value, $quote, $escape_wildcards);
1511  }
1512 
1516  protected function quoteTimestamp(int $value, bool $quote, bool $escape_wildcards): string
1517  {
1518  throw new ilDatabaseException("deprecated");
1519  }
1520 
1524  protected function quoteTime(int $value, bool $quote, bool $escape_wildcards): string
1525  {
1526  throw new ilDatabaseException("deprecated");
1527  }
1528 
1529  protected function quoteFloat(string $value, bool $quote, bool $escape_wildcards): ?string
1530  {
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;
1536  }
1537 
1538  return $this->quoteDecimal($value, $quote, $escape_wildcards);
1539  }
1540 
1541  protected function quoteDecimal(string $value, bool $quote, bool $escape_wildcards): ?string
1542  {
1543  $value = preg_replace('/[^\d\.,\-+eE]/', '', $value);
1544  if (preg_match('/[^.0-9]/', (string) $value) && strpos((string) $value, ',')) {
1545  // 1000,00
1546  if (!strpos((string) $value, '.')) {
1547  // convert the last "," to a "."
1548  $value = strrev(str_replace(',', '.', strrev((string) $value)));
1549  // 1.000,00
1550  } elseif (strpos((string) $value, '.') && strpos((string) $value, '.') < strpos((string) $value, ',')) {
1551  $value = str_replace('.', '', $value);
1552  // convert the last "," to a "."
1553  $value = strrev(str_replace(',', '.', strrev($value)));
1554  // 1,000.00
1555  } else {
1556  $value = str_replace(',', '', $value);
1557  }
1558  }
1559 
1560  return $value;
1561  }
1562 
1568  public function writeLOBToFile($lob, string $file): bool
1569  {
1570  $db = $this->getDBInstance();
1571 
1572  if (preg_match('/^(\w+:\/\/)(.*)$/', $file, $match) && $match[1] === 'file://') {
1573  $file = $match[2];
1574  }
1575 
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) {
1581  @fclose($fp);
1582 
1583  throw new ilDatabaseException('could not write to the output file');
1584  }
1585  }
1586  @fclose($fp);
1587 
1588  return true;
1589  }
1590 
1591  protected function retrieveLOB(array &$lob): bool
1592  {
1593  if (is_null($lob['value'])) {
1594  $lob['value'] = $lob['resource'];
1595  }
1596  $lob['loaded'] = true;
1597 
1598  return true;
1599  }
1600 
1601  protected function readLOB(array $lob, int $length): string
1602  {
1603  return substr((string) $lob['value'], $lob['position'], $length);
1604  }
1605 
1609  protected function endOfLOB(array $lob)
1610  {
1611  return $lob['endOfLOB'];
1612  }
1613 
1617  public function destroyLOB($lob): bool
1618  {
1619  $lob_data = stream_get_meta_data($lob);
1620  $lob_index = $lob_data['wrapper_data']->lob_index;
1621  fclose($lob);
1622  if (isset($this->lobs[$lob_index])) {
1623  unset($this->lobs[$lob_index]);
1624  }
1625 
1626  return true;
1627  }
1628 
1629 
1633  public function matchPattern(array $pattern, $operator = null, $field = null): string
1634  {
1635  $db = $this->getDBInstance();
1636 
1637  $match = '';
1638  if (!is_null($operator)) {
1639  $operator = strtoupper((string) $operator);
1640  switch ($operator) {
1641  // case insensitive
1642  case 'ILIKE':
1643  if (is_null($field)) {
1644  throw new ilDatabaseException('case insensitive LIKE matching requires passing the field name');
1645  }
1646  $db->loadModule('Function');
1647  $match = $db->lower($field) . ' LIKE ';
1648  break;
1649  // case sensitive
1650  case 'LIKE':
1651  $match = is_null($field) ? 'LIKE ' : $field . ' LIKE ';
1652  break;
1653  default:
1654  throw new ilDatabaseException('not a supported operator type:' . $operator);
1655  }
1656  }
1657  $match .= "'";
1658  foreach ($pattern as $key => $value) {
1659  if ($key % 2 !== 0) {
1660  $match .= $value;
1661  } else {
1662  if ($operator === 'ILIKE') {
1663  $value = strtolower((string) $value);
1664  }
1665  $escaped = $db->escape($value);
1666  $match .= $db->escapePattern($escaped);
1667  }
1668  }
1669  $match .= "'";
1670  $match .= $this->patternEscapeString();
1671 
1672  return $match;
1673  }
1674 
1675  public function patternEscapeString(): string
1676  {
1677  return '';
1678  }
1679 
1683  public function mapNativeDatatype(array $field)
1684  {
1685  $db = $this->getDBInstance();
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]);
1689  }
1690 
1691  return $this->mapNativeDatatypeInternal($field);
1692  }
1693 
1697  abstract protected function mapNativeDatatypeInternal(array $field): array;
1698 
1702  public function mapPrepareDatatype(string $type)
1703  {
1704  $db = $this->getDBInstance();
1705 
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];
1710 
1711  return call_user_func_array(
1712  $db->options['datatype_map_callback'][$type],
1713  [&$db, __FUNCTION__, $parameter]
1714  );
1715  }
1716  }
1717 
1718  return $type;
1719  }
1720 }
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)
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 checkTableName(string $table_name)
compareCLOBDefinition(array $current, array $previous)
getTimestampDeclaration(string $name, array $field)
getInternalDeclaration(string $name, array $field)
quoteDecimal(string $value, bool $quote, bool $escape_wildcards)
setAvailableTypes(array $available_types)
mapNativeDatatypeInternal(array $field)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
quoteBLOB($value, bool $quote, bool $escape_wildcards)
quoteLOB($value, bool $quote, bool $escape_wildcards)
getFloatDeclaration(string $name, array $field)
compareTextDefinition(array $current, array $previous)
compareTimestampDefinition(array $current, array $previous)
getDecimalDeclaration(string $name, array $field)
compareFloatDefinition(array $current, array $previous)
setAllowedAttributes(array $allowed_attributes)
quoteText(string $value, bool $quote, bool $escape_wildcards)
getCLOBDeclaration(string $name, array $field)
getBooleanDeclaration(string $name, array $field)
Class ilMySQLQueryUtils.
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)
quote($value, ?string $type=null, bool $quote=true, bool $escape_wildcards=false)
compareBLOBDefinition(array $current, array $previous)
getDeclaration(string $type, string $name, array $field)
getBLOBDeclaration(string $name, array $field)
getCollationFieldDeclaration(string $collation)
static ilDBPdoFieldDefinition $instance