-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathAbstractSchemaManager.php
1808 lines (1588 loc) · 50.1 KB
/
AbstractSchemaManager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Doctrine\DBAL\Schema;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Event\SchemaColumnDefinitionEventArgs;
use Doctrine\DBAL\Event\SchemaIndexDefinitionEventArgs;
use Doctrine\DBAL\Events;
use Doctrine\DBAL\Exception;
use Doctrine\DBAL\Exception\DatabaseRequired;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Result;
use Doctrine\Deprecations\Deprecation;
use Throwable;
use function array_filter;
use function array_intersect;
use function array_map;
use function array_values;
use function assert;
use function call_user_func_array;
use function count;
use function func_get_args;
use function is_callable;
use function is_string;
use function preg_match;
use function str_replace;
use function strtolower;
/**
* Base class for schema managers. Schema managers are used to inspect and/or
* modify the database schema/structure.
*
* @template-covariant T of AbstractPlatform
*/
abstract class AbstractSchemaManager
{
/**
* Holds instance of the Doctrine connection for this schema manager.
*
* @var Connection
*/
protected $_conn;
/**
* Holds instance of the database platform used for this schema manager.
*
* @var T
*/
protected $_platform;
/** @param T $platform */
public function __construct(Connection $connection, AbstractPlatform $platform)
{
$this->_conn = $connection;
$this->_platform = $platform;
}
/**
* Returns the associated platform.
*
* @deprecated Use {@link Connection::getDatabasePlatform()} instead.
*
* @return T
*/
public function getDatabasePlatform()
{
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/5387',
'AbstractSchemaManager::getDatabasePlatform() is deprecated.'
. ' Use Connection::getDatabasePlatform() instead.',
);
return $this->_platform;
}
/**
* Tries any method on the schema manager. Normally a method throws an
* exception when your DBMS doesn't support it or if an error occurs.
* This method allows you to try and method on your SchemaManager
* instance and will return false if it does not work or is not supported.
*
* <code>
* $result = $sm->tryMethod('dropView', 'view_name');
* </code>
*
* @deprecated
*
* @return mixed
*/
public function tryMethod()
{
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/4897',
'AbstractSchemaManager::tryMethod() is deprecated.',
);
$args = func_get_args();
$method = $args[0];
unset($args[0]);
$args = array_values($args);
$callback = [$this, $method];
assert(is_callable($callback));
try {
return call_user_func_array($callback, $args);
} catch (Throwable $e) {
return false;
}
}
/**
* Lists the available databases for this connection.
*
* @return string[]
*
* @throws Exception
*/
public function listDatabases()
{
$sql = $this->_platform->getListDatabasesSQL();
$databases = $this->_conn->fetchAllAssociative($sql);
return $this->_getPortableDatabasesList($databases);
}
/**
* Returns a list of all namespaces in the current database.
*
* @deprecated Use {@see listSchemaNames()} instead.
*
* @return string[]
*
* @throws Exception
*/
public function listNamespaceNames()
{
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4503',
'AbstractSchemaManager::listNamespaceNames() is deprecated,'
. ' use AbstractSchemaManager::listSchemaNames() instead.',
);
$sql = $this->_platform->getListNamespacesSQL();
$namespaces = $this->_conn->fetchAllAssociative($sql);
return $this->getPortableNamespacesList($namespaces);
}
/**
* Returns a list of the names of all schemata in the current database.
*
* @return list<string>
*
* @throws Exception
*/
public function listSchemaNames(): array
{
throw Exception::notSupported(__METHOD__);
}
/**
* Lists the available sequences for this connection.
*
* @param string|null $database
*
* @return Sequence[]
*
* @throws Exception
*/
public function listSequences($database = null)
{
if ($database === null) {
$database = $this->getDatabase(__METHOD__);
} else {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/5284',
'Passing $database to AbstractSchemaManager::listSequences() is deprecated.',
);
}
$sql = $this->_platform->getListSequencesSQL($database);
$sequences = $this->_conn->fetchAllAssociative($sql);
return $this->filterAssetNames($this->_getPortableSequencesList($sequences));
}
/**
* Lists the columns for a given table.
*
* In contrast to other libraries and to the old version of Doctrine,
* this column definition does try to contain the 'primary' column for
* the reason that it is not portable across different RDBMS. Use
* {@see listTableIndexes($tableName)} to retrieve the primary key
* of a table. Where a RDBMS specifies more details, these are held
* in the platformDetails array.
*
* @param string $table The name of the table.
* @param string|null $database
*
* @return Column[]
*
* @throws Exception
*/
public function listTableColumns($table, $database = null)
{
if ($database === null) {
$database = $this->getDatabase(__METHOD__);
} else {
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/5284',
'Passing $database to AbstractSchemaManager::listTableColumns() is deprecated.',
);
}
$sql = $this->_platform->getListTableColumnsSQL($table, $database);
$tableColumns = $this->_conn->fetchAllAssociative($sql);
return $this->_getPortableTableColumnList($table, $database, $tableColumns);
}
/**
* @param string $table
* @param string|null $database
*
* @return Column[]
*
* @throws Exception
*/
protected function doListTableColumns($table, $database = null): array
{
if ($database === null) {
$database = $this->getDatabase(__METHOD__);
} else {
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/5284',
'Passing $database to AbstractSchemaManager::doListTableColumns() is deprecated.',
);
}
return $this->_getPortableTableColumnList(
$table,
$database,
$this->selectTableColumns($database, $this->normalizeName($table))
->fetchAllAssociative(),
);
}
/**
* Lists the indexes for a given table returning an array of Index instances.
*
* Keys of the portable indexes list are all lower-cased.
*
* @param string $table The name of the table.
*
* @return Index[]
*
* @throws Exception
*/
public function listTableIndexes($table)
{
$sql = $this->_platform->getListTableIndexesSQL($table, $this->_conn->getDatabase());
$tableIndexes = $this->_conn->fetchAllAssociative($sql);
return $this->_getPortableTableIndexesList($tableIndexes, $table);
}
/**
* @param string $table
*
* @return Index[]
*
* @throws Exception
*/
protected function doListTableIndexes($table): array
{
$database = $this->getDatabase(__METHOD__);
$table = $this->normalizeName($table);
return $this->_getPortableTableIndexesList(
$this->selectIndexColumns(
$database,
$table,
)->fetchAllAssociative(),
$table,
);
}
/**
* Returns true if all the given tables exist.
*
* The usage of a string $tableNames is deprecated. Pass a one-element array instead.
*
* @param string|string[] $names
*
* @return bool
*
* @throws Exception
*/
public function tablesExist($names)
{
if (is_string($names)) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/3580',
'The usage of a string $tableNames in AbstractSchemaManager::tablesExist() is deprecated. ' .
'Pass a one-element array instead.',
);
}
$names = array_map('strtolower', (array) $names);
return count($names) === count(array_intersect($names, array_map('strtolower', $this->listTableNames())));
}
/**
* Returns a list of all tables in the current database.
*
* @return string[]
*
* @throws Exception
*/
public function listTableNames()
{
$sql = $this->_platform->getListTablesSQL();
$tables = $this->_conn->fetchAllAssociative($sql);
$tableNames = $this->_getPortableTablesList($tables);
return $this->filterAssetNames($tableNames);
}
/**
* @return list<string>
*
* @throws Exception
*/
protected function doListTableNames(): array
{
$database = $this->getDatabase(__METHOD__);
return $this->filterAssetNames(
$this->_getPortableTablesList(
$this->selectTableNames($database)
->fetchAllAssociative(),
),
);
}
/**
* Filters asset names if they are configured to return only a subset of all
* the found elements.
*
* @param mixed[] $assetNames
*
* @return mixed[]
*/
protected function filterAssetNames($assetNames)
{
$filter = $this->_conn->getConfiguration()->getSchemaAssetsFilter();
if ($filter === null) {
return $assetNames;
}
return array_values(array_filter($assetNames, $filter));
}
/**
* Lists the tables for this connection.
*
* @return list<Table>
*
* @throws Exception
*/
public function listTables()
{
$tableNames = $this->listTableNames();
$tables = [];
foreach ($tableNames as $tableName) {
$tables[] = $this->introspectTable($tableName);
}
return $tables;
}
/**
* @return list<Table>
*
* @throws Exception
*/
protected function doListTables(): array
{
$database = $this->getDatabase(__METHOD__);
$tableColumnsByTable = $this->fetchTableColumnsByTable($database);
$indexColumnsByTable = $this->fetchIndexColumnsByTable($database);
$foreignKeyColumnsByTable = $this->fetchForeignKeyColumnsByTable($database);
$tableOptionsByTable = $this->fetchTableOptionsByTable($database);
$filter = $this->_conn->getConfiguration()->getSchemaAssetsFilter();
$tables = [];
foreach ($tableColumnsByTable as $tableName => $tableColumns) {
if ($filter !== null && ! $filter($tableName)) {
continue;
}
$tables[] = new Table(
$tableName,
$this->_getPortableTableColumnList($tableName, $database, $tableColumns),
$this->_getPortableTableIndexesList($indexColumnsByTable[$tableName] ?? [], $tableName),
[],
$this->_getPortableTableForeignKeysList($foreignKeyColumnsByTable[$tableName] ?? []),
$tableOptionsByTable[$tableName] ?? [],
);
}
return $tables;
}
/**
* @deprecated Use {@see introspectTable()} instead.
*
* @param string $name
*
* @return Table
*
* @throws Exception
*/
public function listTableDetails($name)
{
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/5595',
'%s is deprecated. Use introspectTable() instead.',
__METHOD__,
);
$columns = $this->listTableColumns($name);
$foreignKeys = [];
if ($this->_platform->supportsForeignKeyConstraints()) {
$foreignKeys = $this->listTableForeignKeys($name);
}
$indexes = $this->listTableIndexes($name);
return new Table($name, $columns, $indexes, [], $foreignKeys);
}
/**
* @param string $name
*
* @throws Exception
*/
protected function doListTableDetails($name): Table
{
$database = $this->getDatabase(__METHOD__);
$normalizedName = $this->normalizeName($name);
$tableOptionsByTable = $this->fetchTableOptionsByTable($database, $normalizedName);
if ($this->_platform->supportsForeignKeyConstraints()) {
$foreignKeys = $this->listTableForeignKeys($name);
} else {
$foreignKeys = [];
}
return new Table(
$name,
$this->listTableColumns($name, $database),
$this->listTableIndexes($name),
[],
$foreignKeys,
$tableOptionsByTable[$normalizedName] ?? [],
);
}
/**
* An extension point for those platforms where case sensitivity of the object name depends on whether it's quoted.
*
* Such platforms should convert a possibly quoted name into a value of the corresponding case.
*/
protected function normalizeName(string $name): string
{
$identifier = new Identifier($name);
return $identifier->getName();
}
/**
* Selects names of tables in the specified database.
*
* @throws Exception
*
* @abstract
*/
protected function selectTableNames(string $databaseName): Result
{
throw Exception::notSupported(__METHOD__);
}
/**
* Selects definitions of table columns in the specified database. If the table name is specified, narrows down
* the selection to this table.
*
* @throws Exception
*
* @abstract
*/
protected function selectTableColumns(string $databaseName, ?string $tableName = null): Result
{
throw Exception::notSupported(__METHOD__);
}
/**
* Selects definitions of index columns in the specified database. If the table name is specified, narrows down
* the selection to this table.
*
* @throws Exception
*/
protected function selectIndexColumns(string $databaseName, ?string $tableName = null): Result
{
throw Exception::notSupported(__METHOD__);
}
/**
* Selects definitions of foreign key columns in the specified database. If the table name is specified,
* narrows down the selection to this table.
*
* @throws Exception
*/
protected function selectForeignKeyColumns(string $databaseName, ?string $tableName = null): Result
{
throw Exception::notSupported(__METHOD__);
}
/**
* Fetches definitions of table columns in the specified database and returns them grouped by table name.
*
* @return array<string,list<array<string,mixed>>>
*
* @throws Exception
*/
protected function fetchTableColumnsByTable(string $databaseName): array
{
return $this->fetchAllAssociativeGrouped($this->selectTableColumns($databaseName));
}
/**
* Fetches definitions of index columns in the specified database and returns them grouped by table name.
*
* @return array<string,list<array<string,mixed>>>
*
* @throws Exception
*/
protected function fetchIndexColumnsByTable(string $databaseName): array
{
return $this->fetchAllAssociativeGrouped($this->selectIndexColumns($databaseName));
}
/**
* Fetches definitions of foreign key columns in the specified database and returns them grouped by table name.
*
* @return array<string, list<array<string, mixed>>>
*
* @throws Exception
*/
protected function fetchForeignKeyColumnsByTable(string $databaseName): array
{
if (! $this->_platform->supportsForeignKeyConstraints()) {
return [];
}
return $this->fetchAllAssociativeGrouped(
$this->selectForeignKeyColumns($databaseName),
);
}
/**
* Fetches table options for the tables in the specified database and returns them grouped by table name.
* If the table name is specified, narrows down the selection to this table.
*
* @return array<string,array<string,mixed>>
*
* @throws Exception
*/
protected function fetchTableOptionsByTable(string $databaseName, ?string $tableName = null): array
{
throw Exception::notSupported(__METHOD__);
}
/**
* Introspects the table with the given name.
*
* @throws Exception
*/
public function introspectTable(string $name): Table
{
$table = $this->listTableDetails($name);
if ($table->getColumns() === []) {
throw SchemaException::tableDoesNotExist($name);
}
return $table;
}
/**
* Lists the views this connection has.
*
* @return View[]
*
* @throws Exception
*/
public function listViews()
{
$database = $this->_conn->getDatabase();
$sql = $this->_platform->getListViewsSQL($database);
$views = $this->_conn->fetchAllAssociative($sql);
return $this->_getPortableViewsList($views);
}
/**
* Lists the foreign keys for the given table.
*
* @param string $table The name of the table.
* @param string|null $database
*
* @return ForeignKeyConstraint[]
*
* @throws Exception
*/
public function listTableForeignKeys($table, $database = null)
{
if ($database === null) {
$database = $this->getDatabase(__METHOD__);
} else {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/5284',
'Passing $database to AbstractSchemaManager::listTableForeignKeys() is deprecated.',
);
}
$sql = $this->_platform->getListTableForeignKeysSQL($table, $database);
$tableForeignKeys = $this->_conn->fetchAllAssociative($sql);
return $this->_getPortableTableForeignKeysList($tableForeignKeys);
}
/**
* @param string $table
* @param string|null $database
*
* @return ForeignKeyConstraint[]
*
* @throws Exception
*/
protected function doListTableForeignKeys($table, $database = null): array
{
if ($database === null) {
$database = $this->getDatabase(__METHOD__);
} else {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/5284',
'Passing $database to AbstractSchemaManager::listTableForeignKeys() is deprecated.',
);
}
return $this->_getPortableTableForeignKeysList(
$this->selectForeignKeyColumns(
$database,
$this->normalizeName($table),
)->fetchAllAssociative(),
);
}
/* drop*() Methods */
/**
* Drops a database.
*
* NOTE: You can not drop the database this SchemaManager is currently connected to.
*
* @param string $database The name of the database to drop.
*
* @return void
*
* @throws Exception
*/
public function dropDatabase($database)
{
$this->_conn->executeStatement(
$this->_platform->getDropDatabaseSQL($database),
);
}
/**
* Drops a schema.
*
* @throws Exception
*/
public function dropSchema(string $schemaName): void
{
$this->_conn->executeStatement(
$this->_platform->getDropSchemaSQL($schemaName),
);
}
/**
* Drops the given table.
*
* @param string $name The name of the table to drop.
*
* @return void
*
* @throws Exception
*/
public function dropTable($name)
{
$this->_conn->executeStatement(
$this->_platform->getDropTableSQL($name),
);
}
/**
* Drops the index from the given table.
*
* @param Index|string $index The name of the index.
* @param Table|string $table The name of the table.
*
* @return void
*
* @throws Exception
*/
public function dropIndex($index, $table)
{
if ($index instanceof Index) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4798',
'Passing $index as an Index object to %s is deprecated. Pass it as a quoted name instead.',
__METHOD__,
);
$index = $index->getQuotedName($this->_platform);
}
if ($table instanceof Table) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4798',
'Passing $table as an Table object to %s is deprecated. Pass it as a quoted name instead.',
__METHOD__,
);
$table = $table->getQuotedName($this->_platform);
}
$this->_conn->executeStatement(
$this->_platform->getDropIndexSQL($index, $table),
);
}
/**
* Drops the constraint from the given table.
*
* @deprecated Use {@see dropIndex()}, {@see dropForeignKey()} or {@see dropUniqueConstraint()} instead.
*
* @param Table|string $table The name of the table.
*
* @return void
*
* @throws Exception
*/
public function dropConstraint(Constraint $constraint, $table)
{
if ($table instanceof Table) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4798',
'Passing $table as a Table object to %s is deprecated. Pass it as a quoted name instead.',
__METHOD__,
);
$table = $table->getQuotedName($this->_platform);
}
$this->_conn->executeStatement($this->_platform->getDropConstraintSQL(
$constraint->getQuotedName($this->_platform),
$table,
));
}
/**
* Drops a foreign key from a table.
*
* @param ForeignKeyConstraint|string $foreignKey The name of the foreign key.
* @param Table|string $table The name of the table with the foreign key.
*
* @return void
*
* @throws Exception
*/
public function dropForeignKey($foreignKey, $table)
{
if ($foreignKey instanceof ForeignKeyConstraint) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4798',
'Passing $foreignKey as a ForeignKeyConstraint object to %s is deprecated.'
. ' Pass it as a quoted name instead.',
__METHOD__,
);
$foreignKey = $foreignKey->getQuotedName($this->_platform);
}
if ($table instanceof Table) {
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4798',
'Passing $table as a Table object to %s is deprecated. Pass it as a quoted name instead.',
__METHOD__,
);
$table = $table->getQuotedName($this->_platform);
}
$this->_conn->executeStatement(
$this->_platform->getDropForeignKeySQL($foreignKey, $table),
);
}
/**
* Drops a sequence with a given name.
*
* @param string $name The name of the sequence to drop.
*
* @return void
*
* @throws Exception
*/
public function dropSequence($name)
{
$this->_conn->executeStatement(
$this->_platform->getDropSequenceSQL($name),
);
}
/**
* Drops the unique constraint from the given table.
*
* @throws Exception
*/
public function dropUniqueConstraint(string $name, string $tableName): void
{
$this->_conn->executeStatement(
$this->_platform->getDropUniqueConstraintSQL($name, $tableName),
);
}
/**
* Drops a view.
*
* @param string $name The name of the view.
*
* @return void
*
* @throws Exception
*/
public function dropView($name)
{
$this->_conn->executeStatement(
$this->_platform->getDropViewSQL($name),
);
}
/* create*() Methods */
/** @throws Exception */
public function createSchemaObjects(Schema $schema): void
{
$this->_execSql($schema->toSql($this->_platform));
}
/**
* Creates a new database.
*
* @param string $database The name of the database to create.
*
* @return void
*
* @throws Exception
*/
public function createDatabase($database)
{
$this->_conn->executeStatement(
$this->_platform->getCreateDatabaseSQL($database),
);
}
/**
* Creates a new table.
*
* @return void
*
* @throws Exception
*/
public function createTable(Table $table)
{
$createFlags = AbstractPlatform::CREATE_INDEXES | AbstractPlatform::CREATE_FOREIGNKEYS;
$this->_execSql($this->_platform->getCreateTableSQL($table, $createFlags));
}
/**
* Creates a new sequence.
*
* @param Sequence $sequence
*
* @return void
*
* @throws Exception
*/
public function createSequence($sequence)
{
$this->_conn->executeStatement(
$this->_platform->getCreateSequenceSQL($sequence),
);
}
/**
* Creates a constraint on a table.
*
* @deprecated Use {@see createIndex()}, {@see createForeignKey()} or {@see createUniqueConstraint()} instead.
*
* @param Table|string $table
*
* @return void
*
* @throws Exception
*/
public function createConstraint(Constraint $constraint, $table)
{
$this->_conn->executeStatement(
$this->_platform->getCreateConstraintSQL($constraint, $table),
);
}
/**
* Creates a new index on a table.
*
* @param Table|string $table The name of the table on which the index is to be created.
*
* @return void
*
* @throws Exception
*/
public function createIndex(Index $index, $table)
{
$this->_conn->executeStatement(
$this->_platform->getCreateIndexSQL($index, $table),
);
}
/**
* Creates a new foreign key.
*
* @param ForeignKeyConstraint $foreignKey The ForeignKey instance.
* @param Table|string $table The name of the table on which the foreign key is to be created.
*
* @return void
*
* @throws Exception
*/
public function createForeignKey(ForeignKeyConstraint $foreignKey, $table)
{
$this->_conn->executeStatement(
$this->_platform->getCreateForeignKeySQL($foreignKey, $table),
);
}
/**