19 declare(strict_types=1);
38 if ($this->query_utils ===
null) {
47 return $this->db_instance;
55 $str =
'SHOW TABLES ' . ($database ?
' IN ' . $database :
'');
56 $r = $this->pdo->query($str);
59 $sequence_identifier =
"_seq";
60 while (
$data =
$r->fetchColumn()) {
61 if (!preg_match(
"/$sequence_identifier$/um",
$data)) {
72 $seq_name = preg_replace($seq_pattern,
'\\1', $sqn);
73 if ($seq_name && !strcasecmp($sqn, $this->db_instance->getSequenceName($seq_name))) {
85 $query =
"SHOW TABLES LIKE '%_seq'";
86 if (!is_null($database)) {
87 $query .=
" FROM $database";
90 $res = $this->db_instance->query($query);
93 while ($table_name = $this->db_instance->fetchAssoc(
$res)) {
95 if ($sqn !==
'' && $sqn !==
'0') {
99 if ($this->db_instance->options[
'portability'] ??
null) {
101 ($this->db_instance->options[
'field_case'] === CASE_LOWER ?
'strtolower' :
'strtoupper'),
114 $db = $this->db_instance;
116 $table = $db->quoteIdentifier($table,
true);
117 $name = $db->quoteIdentifier($db->getIndexName($name),
true);
118 $query =
"ALTER TABLE $table ADD CONSTRAINT $name";
119 if (!empty($definition[
'primary'])) {
120 $query .=
' PRIMARY KEY';
121 } elseif (!empty($definition[
'unique'])) {
125 foreach (array_keys($definition[
'fields']) as $field) {
126 $fields[] = $db->quoteIdentifier($field,
true);
128 $query .=
' (' . implode(
', ', $fields) .
')';
130 return (
bool) $this->pdo->exec($query);
133 public function createSequence(
string $seq_name,
int $start = 1, array $options = []): bool
135 $sequence_name = $this->db_instance->quoteIdentifier($this->db_instance->getSequenceName($seq_name));
138 $options_strings = [];
140 if (!empty($options[
'comment'])) {
141 $options_strings[
'comment'] =
'COMMENT = ' . $this->db_instance->quote($options[
'comment'],
'text');
144 if (!empty($options[
'charset'])) {
145 $options_strings[
'charset'] =
'DEFAULT CHARACTER SET ' . $options[
'charset'];
146 if (!empty($options[
'collate'])) {
147 $options_strings[
'charset'] .=
' COLLATE ' . $options[
'collate'];
152 if (!empty($options[
'type'])) {
153 $type = $options[
'type'];
156 $options_strings[] =
"ENGINE = $type";
159 $query =
"CREATE TABLE $sequence_name ($seqcol_name INT NOT NULL AUTO_INCREMENT, PRIMARY KEY ($seqcol_name))";
161 if (!empty($options_strings)) {
162 $query .=
' ' . implode(
' ', $options_strings);
164 $this->pdo->exec($query);
170 $query =
"INSERT INTO $sequence_name ($seqcol_name) VALUES (" . ($start - 1) .
')';
171 $this->pdo->exec($query);
181 $db = $this->db_instance;
183 foreach (array_keys($changes) as $change_name) {
184 switch ($change_name) {
201 if (!empty($changes[
'name'])) {
202 $change_name = $db->quoteIdentifier($changes[
'name']);
203 $query .=
'RENAME TO ' . $change_name;
206 if (!empty($changes[
'add']) && is_array($changes[
'add'])) {
207 foreach ($changes[
'add'] as $field_name => $field) {
211 $fd = $db->getFieldDefinition();
213 $query .=
'ADD ' . $fd->getDeclaration($field[
'type'], $field_name, $field);
218 if (!empty($changes[
'remove']) && is_array($changes[
'remove'])) {
219 foreach (array_keys($changes[
'remove']) as $field_name) {
223 $field_name = $db->quoteIdentifier($field_name);
224 $query .=
'DROP ' . $field_name;
229 if (!empty($changes[
'rename']) && is_array($changes[
'rename'])) {
230 foreach ($changes[
'rename'] as $field_name => $field) {
231 $rename[$field[
'name']] = $field_name;
235 if (!empty($changes[
'change']) && is_array($changes[
'change'])) {
236 foreach ($changes[
'change'] as $field_name => $field) {
240 if (isset($rename[$field_name])) {
241 $old_field_name = $rename[$field_name];
242 unset($rename[$field_name]);
244 $old_field_name = $field_name;
246 $old_field_name = $db->quoteIdentifier($old_field_name);
247 $fd = $this->db_instance->getFieldDefinition();
249 $query .=
"CHANGE $old_field_name " . $fd
251 $field[
'definition'][
'type'],
259 if (!empty($rename) && is_array($rename)) {
260 foreach ($rename as $renamed_field) {
264 $field = $changes[
'rename'][$renamed_field];
265 $renamed_field = $db->quoteIdentifier($renamed_field);
266 $fd = $this->db_instance->getFieldDefinition();
268 $query .=
'CHANGE ' . $renamed_field .
' ' . $fd
270 $field[
'definition'][
'type'],
282 $name = $db->quoteIdentifier($name,
true);
284 $statement =
"ALTER TABLE $name $query";
286 return (
bool) $this->pdo->exec($statement);
289 public function createTable(
string $name, array $fields, array $options = []): bool
291 $options[
'type'] = $this->db_instance->getStorageEngine();
298 return $this->db_instance->getIndexName($idx);
303 return $this->db_instance->getSequenceName($sqn);
308 $table = $this->db_instance->quoteIdentifier($table);
309 $query =
"SHOW COLUMNS FROM $table";
310 $result = $this->db_instance->query($query);
312 while (
$data = $this->db_instance->fetchObject($result)) {
313 $return[] =
$data->Field;
324 $key_name =
'Key_name';
325 $non_unique =
'Non_unique';
328 if ($db->options[
'portability'] ??
null) {
329 if ($db->options[
'field_case'] == CASE_LOWER) {
330 $key_name = strtolower($key_name);
331 $non_unique = strtolower($non_unique);
333 $key_name = strtoupper($key_name);
334 $non_unique = strtoupper($non_unique);
338 $table = $this->db_instance->quoteIdentifier($table);
339 $query =
"SHOW INDEX FROM $table";
340 $result_set = $this->db_instance->query($query);
343 while ($index_data = $this->db_instance->fetchAssoc($result_set)) {
344 if (!$index_data[$non_unique]) {
345 $index = $index_data[$key_name] !==
'PRIMARY' ? $this->
fixIndexName($index_data[$key_name]) :
'PRIMARY';
346 if (!empty($index)) {
347 $index = strtolower($index);
348 $result[$index] =
true;
353 if ($this->db_instance->options[
'portability'] ??
null) {
354 $result = array_change_key_case($result, $this->db_instance->options[
'field_case']);
357 return array_keys($result);
365 $key_name =
'Key_name';
366 $non_unique =
'Non_unique';
367 if ($this->db_instance->options[
'portability'] ??
null) {
368 if ($this->db_instance->options[
'field_case'] == CASE_LOWER) {
369 $key_name = strtolower($key_name);
370 $non_unique = strtolower($non_unique);
372 $key_name = strtoupper($key_name);
373 $non_unique = strtoupper($non_unique);
377 $table = $this->db_instance->quoteIdentifier($table);
378 $query =
"SHOW INDEX FROM $table";
379 $result_set = $this->db_instance->query($query);
381 while ($index_data = $this->db_instance->fetchAssoc($result_set)) {
382 $indexes[] = $index_data;
385 foreach ($indexes as $index_data) {
386 if ($index_data[$non_unique] && ($index = $this->
fixIndexName($index_data[$key_name]))) {
387 $result[$index] =
true;
391 if ($this->db_instance->options[
'portability'] ??
null) {
392 $result = array_change_key_case($result, $this->db_instance->options[
'field_case']);
395 return array_keys($result);
401 $idx_name = preg_replace($idx_pattern,
'\\1', $idx);
402 if ($idx_name && !strcasecmp($idx, $this->db_instance->getIndexName($idx_name))) {
409 public function createIndex(
string $table,
string $name, array $definition): bool
411 $table = $this->db_instance->quoteIdentifier($table,
true);
412 $name = $this->db_instance->quoteIdentifier($this->db_instance->getIndexName($name),
true);
413 $query =
"CREATE INDEX $name ON $table";
415 foreach ($definition[
'fields'] as $field => $fieldinfo) {
416 if (!empty($fieldinfo[
'length'])) {
417 $fields[] = $this->db_instance->quoteIdentifier($field,
true) .
'(' . $fieldinfo[
'length'] .
')';
419 $fields[] = $this->db_instance->quoteIdentifier($field,
true);
422 $query .=
' (' . implode(
', ', $fields) .
')';
424 return (
bool) $this->pdo->exec($query);
427 public function dropIndex(
string $table,
string $name): bool
429 $table = $this->db_instance->quoteIdentifier($table,
true);
430 $name = $this->db_instance->quoteIdentifier($this->db_instance->getIndexName($name),
true);
432 return (
bool) $this->pdo->exec(
"DROP INDEX $name ON $table");
437 $sequence_name = $this->db_instance->quoteIdentifier($this->db_instance->getSequenceName($seq_name));
439 return (
bool) $this->pdo->exec(
"DROP TABLE $sequence_name");
447 return $this->
getQueryUtils()->createTable($name, $fields, $options);
450 public function dropConstraint(
string $table,
string $name,
bool $primary =
false): bool
453 $table = $db->quoteIdentifier($table,
true);
454 if ($primary || strtolower($name) ===
'primary') {
455 $query =
"ALTER TABLE $table DROP PRIMARY KEY";
457 $name = $db->quoteIdentifier($db->getIndexName($name),
true);
458 $query =
"ALTER TABLE $table DROP INDEX $name";
461 return (
bool) $this->pdo->exec($query);
467 $name = $db->quoteIdentifier($name,
true);
469 return (
bool) $this->pdo->exec(
"DROP TABLE $name");
477 string $foreign_key_name,
480 array $reference_field_names,
481 string $reference_table,
485 $table = $this->db_instance->quoteIdentifier($table_name,
true);
486 $reference_table = $this->db_instance->quoteIdentifier($reference_table,
true);
487 $field_names = implode(
",", $field_names);
488 $field_names = $this->db_instance->quoteIdentifier($field_names,
true);
489 $reference_field_names = implode(
",", $reference_field_names);
490 $reference_field_names = $this->db_instance->quoteIdentifier($reference_field_names,
true);
491 $foreign_key_name = $this->db_instance->quoteIdentifier($foreign_key_name,
true);
493 if ($on_update !==
null) {
494 $on_update = $on_update->value;
495 $update =
"ON UPDATE $on_update";
498 if ($on_delete !==
null) {
499 $on_delete = $on_delete->value;
500 $delete =
"ON DELETE $on_delete";
502 $query =
"ALTER TABLE 503 $table ADD CONSTRAINT 504 $foreign_key_name FOREIGN KEY ($field_names) 505 REFERENCES $reference_table ($reference_field_names) 510 return (
bool) $this->pdo->exec($query);
513 public function dropForeignKey(
string $foreign_key_name,
string $table_name): bool
515 $table = $this->db_instance->quoteIdentifier($table_name,
true);
516 $name = $this->db_instance->quoteIdentifier($foreign_key_name,
true);
517 $query =
"ALTER TABLE $table DROP FOREIGN KEY $name;";
519 return (
bool) $this->pdo->exec($query);
524 $query =
"SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_TYPE='FOREIGN KEY';";
525 $result_set = $this->db_instance->query($query);
526 while ($foreign_data = $this->db_instance->fetchAssoc($result_set)) {
527 if (array_key_exists(
530 ) && $foreign_data[
'CONSTRAINT_NAME'] === $foreign_key_name) {
dropSequence(string $seq_name)
dropForeignKey(string $foreign_key_name, string $table_name)
fixIndexName(string $idx)
getTableCreationQuery(string $name, array $fields, array $options=[])
dropConstraint(string $table, string $name, bool $primary=false)
Interface ilDBPdoManagerInterface All these methods are not in MDB 2 will be moved to a seperate inte...
listTableIndexes(string $table)
getIndexName(string $idx)
fixSequenceName(string $sqn, bool $check=false)
createTable(string $name, array $fields, array $options=[])
listSequences(?string $database=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
alterTable(string $name, array $changes, bool $check)
dropIndex(string $table, string $name)
createSequence(string $seq_name, int $start=1, array $options=[])
listTables(?string $database=null)
foreignKeyExists(string $foreign_key_name, string $table_name)
listTableFields(string $table)
createConstraint(string $table, string $name, array $definition)
getSequenceName(string $sqn)
__construct(protected \PDO $pdo, protected \ilDBPdo $db_instance)
ilDBPdoManager constructor.
ilQueryUtils $query_utils
const SEQUENCE_COLUMNS_NAME
createIndex(string $table, string $name, array $definition)
addForeignKey(string $foreign_key_name, array $field_names, string $table_name, array $reference_field_names, string $reference_table, ?ForeignKeyConstraints $on_update=null, ?ForeignKeyConstraints $on_delete=null)
listTableConstraints(string $table)