-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathCommandInterface.php
890 lines (835 loc) · 34.6 KB
/
CommandInterface.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
<?php
declare(strict_types=1);
namespace Yiisoft\Db\Command;
use Closure;
use JsonException;
use Throwable;
use Yiisoft\Db\Connection\ConnectionInterface;
use Yiisoft\Db\Constant\ColumnType;
use Yiisoft\Db\Constant\DataType;
use Yiisoft\Db\Constant\IndexType;
use Yiisoft\Db\Constant\PseudoType;
use Yiisoft\Db\Exception\Exception;
use Yiisoft\Db\Exception\InvalidArgumentException;
use Yiisoft\Db\Exception\InvalidCallException;
use Yiisoft\Db\Exception\InvalidConfigException;
use Yiisoft\Db\Exception\NotSupportedException;
use Yiisoft\Db\Query\Data\DataReaderInterface;
use Yiisoft\Db\Query\QueryInterface;
use Yiisoft\Db\QueryBuilder\DMLQueryBuilderInterface;
use Yiisoft\Db\Schema\Column\ColumnInterface;
/**
* This interface represents a database command, such as a `SELECT`, `INSERT`, `UPDATE`, or `DELETE` statement.
*
* A command instance is usually created by calling {@see ConnectionInterface::createCommand}.
*
* @psalm-import-type ParamsType from ConnectionInterface
* @psalm-import-type BatchValues from DMLQueryBuilderInterface
*/
interface CommandInterface
{
/**
* Creates an SQL command for adding a `CHECK` constraint to an existing table.
*
* @param string $table The name of the table to add check constraint to.
* @param string $name The name of the check constraint.
* @param string $expression The SQL of the `CHECK` constraint.
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function addCheck(string $table, string $name, string $expression): static;
/**
* Creates an SQL command for adding a new DB column.
*
* @param string $table The name of the table to add new column to.
* @param string $column The name of the new column.
* @param ColumnInterface|string $type The column type.
* {@see QueryBuilder::buildColumnDefinition()} will be called to convert the given column type to the database one.
* For example, `string` will be converted to `varchar(255)`, and `string not null` becomes `varchar(255) not null`.
*
* Note: The method will quote the `table` and `column` parameters before using them in the generated SQL.
*/
public function addColumn(string $table, string $column, ColumnInterface|string $type): static;
/**
* Builds an SQL command for adding a comment to a column.
*
* @param string $table The name of the table whose column is to comment.
* @param string $column The name of the column to comment.
* @param string $comment The text of the comment.
*
* @throws \Exception
*
* Note: The method will quote the `table`, `column` and `comment` parameters before using them in the generated
* SQL.
*/
public function addCommentOnColumn(string $table, string $column, string $comment): static;
/**
* Builds an SQL command for adding comment to the table.
*
* @param string $table The name of the table whose column is to comment.
* @param string $comment The text of the comment to add.
*
* @throws \Exception
*
* Note: The method will quote the `table` and `comment` parameters before using them in the generated SQL.
*/
public function addCommentOnTable(string $table, string $comment): static;
/**
* Creates an SQL command for adding a default value constraint to an existing table.
*
* @param string $table The name of the table to add constraint to.
* @param string $name The name of the default value constraint.
* @param string $column The name of the column to add constraint to.
* @param mixed $value Default value.
*
* @throws Exception
* @throws NotSupportedException
*
* Note: The method will quote the `name`, `table` and `column` parameters before using them in the generated SQL.
*/
public function addDefaultValue(string $table, string $name, string $column, mixed $value): static;
/**
* Creates an SQL command for adding a foreign key constraint to an existing table.
*
* The method will quote the table and column names.
*
* @param string $table The name of the table to add foreign key constraint to.
* @param string $name The name of the foreign key constraint.
* @param array|string $columns The name of the column to add foreign key constraint to. If there are
* many columns, separate them with commas.
* @param string $referenceTable The name of the table that the foreign key references to.
* @param array|string $referenceColumns The name of the column that the foreign key references to. If there are
* many columns, separate them with commas.
* @param string|null $delete The `ON DELETE` option. Most DBMS support these options: `RESTRICT`, `CASCADE`, `NO ACTION`,
* `SET DEFAULT`, `SET NULL`.
* @param string|null $update The `ON UPDATE` option. Most DBMS support these options: `RESTRICT`, `CASCADE`, `NO ACTION`,
* `SET DEFAULT`, `SET NULL`.
*
* @throws Exception
* @throws InvalidArgumentException
*
* Note: The method will quote the `name`, `table`, `referenceTable` parameters before using them in the generated
* SQL.
*/
public function addForeignKey(
string $table,
string $name,
array|string $columns,
string $referenceTable,
array|string $referenceColumns,
string $delete = null,
string $update = null
): static;
/**
* Creates an SQL command for adding a primary key constraint to an existing table.
*
* The method will quote the table and column names.
*
* @param string $table The name of the table to add primary key constraint to.
* @param string $name The name of the primary key constraint.
* @param array|string $columns The comma separated string or array of columns that the primary key consists of.
*
* Note: The method will quote the `name`, `table`, and `column` parameters before using them in the generated SQL.
*/
public function addPrimaryKey(string $table, string $name, array|string $columns): static;
/**
* Creates an SQL command for changing the definition of a column.
*
* @param string $table The table whose column is to change.
* @param string $column The name of the column to change.
* @param ColumnInterface|string $type The column type.
* {@see QueryBuilder::buildColumnDefinition()} will be called to convert the give column type to the physical one.
* For example, `string` will be converted as `varchar(255)`, and `string not null` becomes `varchar(255) not null`.
*
* Note: The method will quote the `table` and `column` parameters before using them in the generated SQL.
*/
public function alterColumn(string $table, string $column, ColumnInterface|string $type): static;
/**
* Creates a batch INSERT command.
*
* For example,
*
* ```php
* $connectionInterface->createCommand()->insertBatch(
* 'user',
* [
* ['Tom', 30],
* ['Jane', 20],
* ['Linda', 25],
* ],
* ['name', 'age']
* )->execute();
* ```
*
* or as associative arrays where the keys are column names
*
* ```php
* $connectionInterface->createCommand()->insertBatch(
* 'user',
* [
* ['name' => 'Tom', 'age' => 30],
* ['name' => 'Jane', 'age' => 20],
* ['name' => 'Linda', 'age' => 25],
* ]
* )->execute();
* ```
*
* The method will escape the column names, and quote the values to insert.
*
* Note that the values in each row must match the corresponding column names.
*
* Also note that the created command isn't executed until {@see execute()} is called.
*
* @param string $table The name of the table to insert new rows into.
* @param iterable $rows The rows to be batch inserted into the table.
* @param string[] $columns The column names.
*
* @throws Exception
* @throws InvalidArgumentException
*
* @psalm-param BatchValues $rows
*
* Note: The method will quote the `table` and `column` parameters before using them in the generated SQL.
*/
public function insertBatch(string $table, iterable $rows, array $columns = []): static;
/**
* Binds a parameter to the SQL statement to be executed.
*
* @param int|string $name The parameter identifier. For a prepared statement using named placeholders, this will be
* a parameter name of the form `:name`. For a prepared statement using question mark placeholders, this will be the
* 1-indexed position of the parameter.
* @param mixed $value The PHP variable to bind to the SQL statement parameter (passed by reference).
* @param int|null $dataType The {@see DataType SQL data type} of the parameter. If `null`, the type is determined
* by the PHP type of the value.
* @param int|null $length The length of the data type.
* @param mixed|null $driverOptions The driver-specific options.
*
* @psalm-param DataType::*|null $dataType
*
* @throws Exception
*/
public function bindParam(
int|string $name,
mixed &$value,
int $dataType = null,
int $length = null,
mixed $driverOptions = null
): static;
/**
* Creates an SQL command for adding a unique constraint to an existing table.
*
* @param string $table The name of the table to add unique constraint to.
* @param string $name The name of the unique constraint.
* @param array|string $columns The name of the column to add unique constraint to. If there are
* many columns, use an array or separate them with commas.
*
* Note: The method will quote the `name`, `table`, and `column` parameters before using them in the generated SQL.
*/
public function addUnique(string $table, string $name, array|string $columns): static;
/**
* Binds a value to a parameter.
*
* @param int|string $name Parameter identifier. For a prepared statement using named placeholders, this will be a
* parameter name of the form `:name`. For a prepared statement using question mark placeholders, this will be the
* 1-indexed position of the parameter.
* @param mixed $value The value to bind to the parameter.
* @param int|null $dataType The {@see DataType SQL data type} of the parameter. If null, the type is determined
* by the PHP type of the value.
*
* @psalm-param DataType::*|null $dataType
*/
public function bindValue(int|string $name, mixed $value, int $dataType = null): static;
/**
* Binds a list of values to the corresponding parameters.
*
* This is similar to {@see bindValue()} except that it binds many values at a time.
*
* Note that the SQL data type of each value is determined by its PHP type.
*
* @param array|ParamInterface[] $values The values to bind. This must be given in terms of an associative
* array with array keys being the parameter names, and an array values the corresponding parameter values,
* for example, `[':name' => 'John Doe', ':age' => 25]`.
* By default, the SQL data type of each value is determined by its PHP type.
* You may explicitly specify the {@see DataType SQL data type} type by using a {@see Param} class:
* `new Param(value, type)`, for example, `[':name' => 'John Doe', ':profile' => new Param($profile, DataType::LOB)]`.
*/
public function bindValues(array $values): static;
/**
* Cancels the execution of the SQL statement.
*/
public function cancel(): void;
/**
* Builds an SQL command for enabling or disabling integrity check.
*
* @param string $schema The schema name of the tables. Defaults to empty string, meaning the current or default
* schema.
* @param string $table The table name to check.
* @param bool $check Whether to turn the integrity check on or off.
*
* @throws Exception
* @throws NotSupportedException
*
* Note: The method will quote the `table` parameters before using them in the generated SQL.
*/
public function checkIntegrity(string $schema, string $table, bool $check = true): static;
/**
* Creates an SQL command for creating a new index.
*
* @param string $table The name of the table to create the index for.
* @param string $name The name of the index.
* @param array|string $columns The column(s) to include in the index. If there are many columns,
* separate them with commas.
* @param string|null $indexType The type of the index supported by DBMS {@see IndexType} - for example: `UNIQUE`,
* `FULLTEXT`, `SPATIAL`, `BITMAP` or null as default.
* @param string|null $indexMethod The index organization method (with `USING`, not all DBMS).
*
* @throws Exception
* @throws InvalidArgumentException
*
* @psalm-param IndexType::*|null $indexType
*
* Note: The method will quote the `name`, `table`, and `column` parameters before using them in the generated SQL.
*/
public function createIndex(
string $table,
string $name,
array|string $columns,
string $indexType = null,
string $indexMethod = null
): static;
/**
* Creates an SQL command for creating a new DB table.
*
* The columns in the new table should be specified as name-definition pairs (e.g. 'name' => 'string'), where name
* is the name of the column which will be properly quoted by the method, and definition is the type of the column
* which can contain a native database column type, {@see ColumnType abstract} or {@see PseudoType pseudo} type,
* or can be represented as instance of {@see ColumnInterface}.
*
* The {@see QueryBuilderInterface::buildColumnDefinition()} method will be invoked to convert column definitions
* into SQL representation. For example, it will convert `string not null` to `varchar(255) not null`
* and `pk` to `int PRIMARY KEY AUTO_INCREMENT` (for MySQL).
*
* The preferred way is to use {@see ColumnBuilder} to generate column definitions as instances of
* {@see ColumnInterface}.
*
* ```php
* $this->createTable(
* 'example_table',
* [
* 'id' => ColumnBuilder::primaryKey(),
* 'name' => ColumnBuilder::string(64)->notNull(),
* 'type' => ColumnBuilder::integer()->notNull()->defaultValue(10),
* 'description' => ColumnBuilder::text(),
* 'rule_name' => ColumnBuilder::string(64),
* 'data' => ColumnBuilder::text(),
* 'created_at' => ColumnBuilder::datetime()->notNull(),
* 'updated_at' => ColumnBuilder::datetime(),
* ],
* );
* ```
*
* If a column is specified with definition only (e.g. 'PRIMARY KEY (name, type)'), it will be directly put into the
* generated SQL.
*
* @param string $table The name of the table to create.
* @param (ColumnInterface|string)[] $columns The columns (name => definition) in the new table.
* The definition can be `string` or {@see ColumnInterface} instance.
* @param string|null $options More SQL fragments to append to the generated SQL.
*
* @throws Exception
* @throws InvalidConfigException
* @throws NotSupportedException
*
* Note: The method will quote the `table` and `columns` parameter before using it in the generated SQL.
*
* @psalm-param array<string, ColumnInterface>|string[] $columns
*/
public function createTable(string $table, array $columns, string $options = null): static;
/**
* Creates a SQL View.
*
* @param string $viewName The name of the view to create.
* @param QueryInterface|string $subQuery The select statement which defines the view. This can be either a string
* or a {@see QueryInterface}.
*
* @throws InvalidArgumentException
* @throws Exception
*
* Note: The method will quote the `viewName` parameter before using it in the generated SQL.
*/
public function createView(string $viewName, QueryInterface|string $subQuery): static;
/**
* Creates a DELETE command.
*
* For example,
*
* ```php
* $connectionInterface->createCommand()->delete('user', 'status = 0')->execute();
* ```
*
* or with using parameter binding for the condition:
*
* ```php
* $status = 0;
* $connectionInterface->createCommand()->delete('user', 'status = :status', [':status' => $status])->execute();
* ```
*
* The method will escape the table and column names.
*
* Note that the created command isn't executed until you call {@see execute()}.
*
* @param string $table The table to delete data from.
* @param array|string $condition The condition to put in the `WHERE` part. Please refer to
* {@see QueryInterface::where()} on how to specify condition.
* @param array $params The parameters to bind to the command.
*
* @throws Exception
* @throws InvalidArgumentException
*
* @psalm-param ParamsType $params
*
* Note: The method will quote the `table` parameter before using it in the generated SQL.
*/
public function delete(string $table, array|string $condition = '', array $params = []): static;
/**
* Creates an SQL command for dropping a check constraint.
*
* @param string $table The name of the table whose check constraint to drop.
* @param string $name The name of the check constraint to drop.
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function dropCheck(string $table, string $name): static;
/**
* Creates an SQL command for dropping a DB column.
*
* @param string $table The name of the table whose column is to drop.
* @param string $column The name of the column to drop.
*
* Note: The method will quote the `table` and `column` parameters before using them in the generated SQL.
*/
public function dropColumn(string $table, string $column): static;
/**
* Builds an SQL command for dropping comment from column.
*
* @param string $table The name of the table whose column to comment.
* @param string $column The name of the column to comment.
*
* Note: The method will quote the `table` and `column` parameters before using them in the generated SQL.
*/
public function dropCommentFromColumn(string $table, string $column): static;
/**
* Builds an SQL command for dropping comment from the table.
*
* @param string $table The name of the table whose column to comment.
*
* Note: The method will quote the `table` parameter before using it in the generated SQL.
*/
public function dropCommentFromTable(string $table): static;
/**
* Creates an SQL command for dropping a default value constraint.
*
* @param string $table The name of the table whose default value constraint to drop.
* @param string $name The name of the default value constraint to drop.
*
* @throws Exception
* @throws NotSupportedException
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function dropDefaultValue(string $table, string $name): static;
/**
* Creates an SQL command for dropping a foreign key constraint.
*
* @param string $table The name of the table whose foreign is to drop.
* @param string $name The name of the foreign key constraint to drop.
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function dropForeignKey(string $table, string $name): static;
/**
* Creates an SQL command for dropping an index.
*
* @param string $table The name of the table whose index to drop.
* @param string $name The name of the index to drop.
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function dropIndex(string $table, string $name): static;
/**
* Creates an SQL command for removing a primary key constraint to an existing table.
*
* @param string $table The name of the table to remove the primary key constraint from.
* @param string $name The name of the primary key constraint to remove.
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function dropPrimaryKey(string $table, string $name): static;
/**
* Creates an SQL command for dropping a DB table.
*
* @param string $table The name of the table to drop.
*
* Note: The method will quote the `table` parameter before using it in the generated SQL.
*/
public function dropTable(string $table): static;
/**
* Creates an SQL command for dropping a unique constraint.
*
* @param string $table The name of the table whose unique constraint to drop.
* @param string $name The name of the unique constraint to drop.
*
* Note: The method will quote the `name` and `table` parameters before using them in the generated SQL.
*/
public function dropUnique(string $table, string $name): static;
/**
* Drops an SQL View.
*
* @param string $viewName The name of the view to drop.
*
* Note: The method will quote the `viewName` parameter before using it in the generated SQL.
*/
public function dropView(string $viewName): static;
/**
* Executes the SQL statement.
*
* You should use this method only for executing a non-query SQL statement, such as `INSERT`, `DELETE`, `UPDATE`
* SQLs. It returns no result set.
*
* @throws Exception
* @throws Throwable If execution failed.
*
* @return int The number of rows execution affected.
*/
public function execute(): int;
/**
* Return the params used in the last query.
*
* @param bool $asValues By default, returns an array of name => value pairs. If set to `true`, returns an array of
* {@see ParamInterface}.
*
* @psalm-return array|ParamInterface[]
*
* @return array The params used in the last query.
*/
public function getParams(bool $asValues = true): array;
/**
* Returns the raw SQL by inserting parameter values into the corresponding placeholders in {@see getSql()}.
*
* Note that you should mainly use the return value of this method for logging.
*
* It's likely that this method returns an invalid SQL due to improper replacement of parameter placeholders.
*
* @throws \Exception
*
* @return string The raw SQL with parameter values inserted into the corresponding placeholders in {@see getSql()}.
*/
public function getRawSql(): string;
/**
* Returns the SQL statement for this command.
*
* @return string The SQL statement to execute.
*/
public function getSql(): string;
/**
* Creates an INSERT command.
*
* For example,
*
* ```php
* $connectionInterface->createCommand()->insert(
* 'user',
* [
* 'name' => 'Sam',
* 'age' => 30,
* ]
* )->execute();
* ```
*
* The method will escape the column names, and bind the values to be inserted.
*
* Note that the created command isn't executed until you call {@see execute()}.
*
* @param string $table The name of the table to insert new rows into.
* @param array|QueryInterface $columns The column data (name => value) to insert into the table or an instance of
* {@see QueryInterface} to perform `INSERT INTO ... SELECT` SQL statement.
*
* @throws Exception
* @throws InvalidArgumentException
* @throws InvalidConfigException
* @throws NotSupportedException
*
* Note: The method will quote the `table` and `columns` parameter before using it in the generated SQL.
*/
public function insert(string $table, QueryInterface|array $columns): static;
/**
* Attention! Please use function only as a last resort. The feature will be refactored in future releases.
* Executes the INSERT command, returning primary key inserted values.
*
* @param string $table The name of the table to insert new rows into.
* @param array $columns The column data (name => value) to insert into the table.
*
* @throws Exception
* @throws InvalidCallException
* @throws InvalidConfigException
* @throws Throwable
*
* @return array|false The primary key values or false if the command fails.
*
* Note: The method will quote the `table` and `columns` parameter before using it in the generated SQL.
*/
public function insertWithReturningPks(string $table, array $columns): bool|array;
/**
* Prepares the SQL statement to be executed.
*
* For complex SQL statement that's to be executed many times, this may improve performance.
*
* For SQL statement with binding parameters, this method is invoked automatically.
*
* @param bool|null $forRead Whether the method call is for a read query. If null, it means the SQL statement
* should be used to decide whether it's to read or write.
*
* @throws Exception If there is any DB error.
* @throws InvalidConfigException
*/
public function prepare(bool $forRead = null): void;
/**
* Executes the SQL statement and returns a query result.
*
* This method is for executing an SQL query that returns result set, such as `SELECT`.
*
* @throws Exception
* @throws Throwable If execution failed.
*
* @return DataReaderInterface The reader object for fetching the query result.
*/
public function query(): DataReaderInterface;
/**
* Executes the SQL statement and returns ALL rows at once.
*
* @throws Exception
* @throws Throwable If execution failed.
*
* @return array[] All rows of the query result. Each array element is an `array` representing a row of data.
* Empty array if the query results in nothing.
*/
public function queryAll(): array;
/**
* Execute the SQL statement and returns the first column of the result.
*
* This method is best used when you need only the first column of a result
* (that's the first element in each row).
*
* @throws Exception
* @throws Throwable If execution failed.
*
* @return array The first column of the query result. Empty array if the query results in nothing.
*/
public function queryColumn(): array;
/**
* Executes the SQL statement and returns the first row of the result.
*
* This method is best used when you need only the first row of a result.
*
* @throws Exception
* @throws Throwable If execution failed.
*
* @return array|null The first row as an `array` of the query result. `null` if the query results in nothing.
*/
public function queryOne(): array|null;
/**
* Execute the SQL statement and returns the value of the first column in the first row of data.
* This method is best used when you need only a single value.
* Do not use this method for `boolean` values as it returns `false` if there is no value.
*
* @throws Exception
* @throws Throwable If execution failed.
*
* @return false|float|int|string|null The value of the first column in the first row of the query result.
* False if there is no value.
*
* @psalm-return null|scalar
*/
public function queryScalar(): bool|string|null|int|float;
/**
* Creates an SQL command for renaming a column.
*
* @param string $table The name of the table whose column is to rename.
* @param string $oldName The old name of the column.
* @param string $newName The new name of the column.
*
* Note: The method will quote the `table`, `oldName` and `newName` parameter before using it in the generated SQL.
*/
public function renameColumn(string $table, string $oldName, string $newName): static;
/**
* Creates an SQL command for renaming a DB table.
*
* @param string $table The name of the table to rename.
* @param string $newName The new table name.
*
* Note: The method will quote the `table` and `newName` parameter before using it in the generated SQL.
*/
public function renameTable(string $table, string $newName): static;
/**
* Executes a db command resetting the sequence value of a table's primary key.
*
* Reason for execute is that some databases (Oracle) need several queries to do so.
*
* The sequence is reset such that the primary key of the next new row inserted will have the specified value or the
* maximum existing value +1.
*
* @param string $table The name of the table whose primary key sequence is reset.
* @param int|string|null $value The value for the primary key of the next new row inserted. If this isn't set, the
* next new row's primary key will have the maximum existing value +1.
*
* @throws Exception
* @throws NotSupportedException
*
* Note: The method will quote the `table` parameter before using it in the generated SQL.
*/
public function resetSequence(string $table, int|string $value = null): static;
/**
* List all database names in the current connection.
*/
public function showDatabases(): array;
/**
* Specifies the SQL statement to execute.
*
* The SQL statement won't be modified in any way.
*
* The earlier SQL (if any) will be discarded, and {@see Param} will be cleared as well.
*
* See {@see reset()} for details.
*
* @param string $sql The SQL statement to set.
*
* @see reset()
* @see cancel()
*/
public function setRawSql(string $sql): static;
/**
* Sets a Closure (anonymous function) that's called when {@see Exception} is thrown when executing the
* command. The signature of the Closure should be:.
*
* ```php
* function (Exceptions $e, $attempt)
* {
* // return true or false (whether to retry the command or rethrow $e)
* }
* ```
*
* The Closure will receive a database exception thrown and a current try (to execute the command) number
* starting from 1.
*
* @param Closure|null $handler A PHP callback to handle database exceptions.
*/
public function setRetryHandler(Closure|null $handler): static;
/**
* Specifies the SQL statement to execute. The SQL statement will be quoted using
* {@see ConnectionInterface::quoteSql()}.
*
* The previous SQL (if any) will be discarded, and {@see Param} will be cleared as well. See {@see reset()} for
* details.
*
* @param string $sql The SQL statement to set.
*
* @see reset()
* @see cancel()
*/
public function setSql(string $sql): static;
/**
* Creates an SQL command for truncating a DB table.
*
* @param string $table The table to truncate.
*
* Note: The method will quote the `table` parameter before using it in the generated SQL.
*/
public function truncateTable(string $table): static;
/**
* Creates an UPDATE command.
*
* For example,
*
* ```php
* $connectionInterface->createCommand()->update('user', ['status' => 1], 'age > 30')->execute();
* ```
*
* or with using parameter binding for the condition:
*
* ```php
* $minAge = 30;
* $connectionInterface->createCommand()->update(
* 'user',
* ['status' => 1],
* 'age > :minAge',
* [':minAge' => $minAge]
* )->execute();
* ```
*
* The method will escape the column names and bind the values to update.
*
* Note that the created command isn't executed until you call {@see execute()}.
*
* @param string $table The name of the table to update.
* @param array $columns The column data (name => value) to update.
* @param array|string $condition The condition to put in the WHERE part. Please refer to
* {@see QueryInterface::where()} on how to specify condition.
* @param array $params The parameters to bind to the command.
*
* @throws Exception
* @throws InvalidArgumentException
*
* @psalm-param ParamsType $params
*
* Note: The method will quote the `table` and `columns` parameter before using it in the generated SQL.
*/
public function update(string $table, array $columns, array|string $condition = '', array $params = []): static;
/**
* Creates a command to insert rows into a database table if they don't already exist (matching unique constraints)
* or update them if they do.
*
* For example,
*
* ```php
* $sql = $queryBuilder->upsert(
* 'pages',
* [
* 'name' => 'Front page',
* 'url' => 'http://example.com/', // url is unique
* 'visits' => 0,
* ],
* [
* 'visits' => new \Yiisoft\Db\Expression\Expression('visits + 1'),
* ],
* $params,
* );
* ```
*
* The method will escape the table and column names.
*
* @param string $table The name of the table to insert rows into or update rows in.
* @param array|QueryInterface $insertColumns The column data (name => value) to insert into the table or an
* instance of {@see QueryInterface} to perform `INSERT INTO ... SELECT` SQL statement.
* @param array|bool $updateColumns The column data (name => value) to update if it already exists.
* If `true` is passed, the column data will be updated to match the insert column data.
* If `false` is passed, no update will be performed if the column data already exist.
* @param array $params The parameters to bind to the command.
*
* @throws Exception
* @throws InvalidConfigException
* @throws JsonException
* @throws NotSupportedException
*
* @psalm-param array<string, mixed>|QueryInterface $insertColumns
* @psalm-param ParamsType $params
*
* Note: The method will quote the `table` and `insertColumns`, `updateColumns` parameters before using it in the
* generated SQL.
*/
public function upsert(
string $table,
QueryInterface|array $insertColumns,
bool|array $updateColumns = true,
array $params = []
): static;
}