-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAdapterInterface.php
1153 lines (1033 loc) · 35.3 KB
/
AdapterInterface.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
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\DB\Adapter;
use Magento\Framework\DB\Ddl\Table;
/**
* Magento Database Adapter Interface
*
* @api
* @since 100.0.2
*/
interface AdapterInterface
{
const INDEX_TYPE_PRIMARY = 'primary';
const INDEX_TYPE_UNIQUE = 'unique';
const INDEX_TYPE_INDEX = 'index';
const INDEX_TYPE_FULLTEXT = 'fulltext';
const FK_ACTION_CASCADE = 'CASCADE';
const FK_ACTION_SET_NULL = 'SET NULL';
const FK_ACTION_NO_ACTION = 'NO ACTION';
const FK_ACTION_RESTRICT = 'RESTRICT';
const FK_ACTION_SET_DEFAULT = 'SET DEFAULT';
const INSERT_ON_DUPLICATE = 1;
const INSERT_IGNORE = 2;
/** Strategy for updating data in table. See https://dev.mysql.com/doc/refman/5.7/en/replace.html */
const REPLACE = 4;
const ISO_DATE_FORMAT = 'yyyy-MM-dd';
const ISO_DATETIME_FORMAT = 'yyyy-MM-dd HH-mm-ss';
const INTERVAL_SECOND = 'SECOND';
const INTERVAL_MINUTE = 'MINUTES';
const INTERVAL_HOUR = 'HOURS';
const INTERVAL_DAY = 'DAYS';
const INTERVAL_MONTH = 'MONTHS';
const INTERVAL_YEAR = 'YEARS';
/**
* Error message for DDL query in transactions
*/
const ERROR_DDL_MESSAGE = 'DDL statements are not allowed in transactions';
/**
* Error message for unfinished rollBack transaction
*/
const ERROR_ROLLBACK_INCOMPLETE_MESSAGE = 'Rolled back transaction has not been completed correctly.';
/**
* Error message for asymmetric transaction rollback
*/
const ERROR_ASYMMETRIC_ROLLBACK_MESSAGE = 'Asymmetric transaction rollback.';
/**
* Error message for asymmetric transaction commit
*/
const ERROR_ASYMMETRIC_COMMIT_MESSAGE = 'Asymmetric transaction commit.';
/**
* Begin new DB transaction for connection
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function beginTransaction();
/**
* Commit DB transaction
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function commit();
/**
* Roll-back DB transaction
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function rollBack();
/**
* Retrieve DDL object for new table
*
* @param string $tableName the table name
* @param string $schemaName the database or schema name
* @return Table
*/
public function newTable($tableName = null, $schemaName = null);
/**
* Create table from DDL object
*
* @param Table $table
* @throws \Zend_Db_Exception
* @return \Zend_Db_Statement_Interface
*/
public function createTable(Table $table);
/**
* Drop table from database
*
* @param string $tableName
* @param string $schemaName
* @return boolean
*/
public function dropTable($tableName, $schemaName = null);
/**
* Create temporary table from DDL object
*
* @param Table $table
* @throws \Zend_Db_Exception
* @return \Zend_Db_Statement_Interface
*/
public function createTemporaryTable(Table $table);
/**
* Create temporary table from other table
*
* @param string $temporaryTableName
* @param string $originTableName
* @param bool $ifNotExists
* @return \Zend_Db_Statement_Interface
*/
public function createTemporaryTableLike($temporaryTableName, $originTableName, $ifNotExists = false);
/**
* Drop temporary table from database
*
* @param string $tableName
* @param string $schemaName
* @return boolean
*/
public function dropTemporaryTable($tableName, $schemaName = null);
/**
* Rename several tables
*
* @param array $tablePairs array('oldName' => 'Name1', 'newName' => 'Name2')
*
* @return boolean
* @throws \Zend_Db_Exception
*/
public function renameTablesBatch(array $tablePairs);
/**
* Truncate a table
*
* @param string $tableName
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function truncateTable($tableName, $schemaName = null);
/**
* Checks if table exists
*
* @param string $tableName
* @param string $schemaName
* @return boolean
*/
public function isTableExists($tableName, $schemaName = null);
/**
* Returns short table status array
*
* @param string $tableName
* @param string $schemaName
* @return array|false
*/
public function showTableStatus($tableName, $schemaName = null);
/**
* Returns the column descriptions for a table.
*
* The return value is an associative array keyed by the column name,
* as returned by the RDBMS.
*
* The value of each array element is an associative array
* with the following keys:
*
* SCHEMA_NAME => string; name of database or schema
* TABLE_NAME => string;
* COLUMN_NAME => string; column name
* COLUMN_POSITION => number; ordinal position of column in table
* DATA_TYPE => string; SQL datatype name of column
* DEFAULT => string; default expression of column, null if none
* NULLABLE => boolean; true if column can have nulls
* LENGTH => number; length of CHAR/VARCHAR
* SCALE => number; scale of NUMERIC/DECIMAL
* PRECISION => number; precision of NUMERIC/DECIMAL
* UNSIGNED => boolean; unsigned property of an integer type
* PRIMARY => boolean; true if column is part of the primary key
* PRIMARY_POSITION => integer; position of column in primary key
* IDENTITY => integer; true if column is auto-generated with unique values
*
* @param string $tableName
* @param string $schemaName OPTIONAL
* @return array
*/
public function describeTable($tableName, $schemaName = null);
/**
* Create \Magento\Framework\DB\Ddl\Table object by data from describe table
*
* @param string $tableName
* @param string $newTableName
* @return Table
*/
public function createTableByDdl($tableName, $newTableName);
/**
* Modify the column definition by data from describe table
*
* @param string $tableName
* @param string $columnName
* @param array|string $definition
* @param boolean $flushData
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function modifyColumnByDdl($tableName, $columnName, $definition, $flushData = false, $schemaName = null);
/**
* Rename table
*
* @param string $oldTableName
* @param string $newTableName
* @param string $schemaName
* @return boolean
*/
public function renameTable($oldTableName, $newTableName, $schemaName = null);
/**
* Adds new column to the table.
*
* Generally $defintion must be array with column data to keep this call cross-DB compatible.
* Using string as $definition is allowed only for concrete DB adapter.
*
* @param string $tableName
* @param string $columnName
* @param array|string $definition string specific or universal array DB Server definition
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function addColumn($tableName, $columnName, $definition, $schemaName = null);
/**
* Change the column name and definition
*
* For change definition of column - use modifyColumn
*
* @param string $tableName
* @param string $oldColumnName
* @param string $newColumnName
* @param array|string $definition
* @param boolean $flushData flush table statistic
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function changeColumn(
$tableName,
$oldColumnName,
$newColumnName,
$definition,
$flushData = false,
$schemaName = null
);
/**
* Modify the column definition
*
* @param string $tableName
* @param string $columnName
* @param array|string $definition
* @param boolean $flushData
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function modifyColumn($tableName, $columnName, $definition, $flushData = false, $schemaName = null);
/**
* Drop the column from table
*
* @param string $tableName
* @param string $columnName
* @param string $schemaName
* @return boolean
*/
public function dropColumn($tableName, $columnName, $schemaName = null);
/**
* Check is table column exists
*
* @param string $tableName
* @param string $columnName
* @param string $schemaName
* @return boolean
*/
public function tableColumnExists($tableName, $columnName, $schemaName = null);
/**
* Add new index to table name
*
* @param string $tableName
* @param string $indexName
* @param string|array $fields the table column name or array of ones
* @param string $indexType the index type
* @param string $schemaName
* @return \Zend_Db_Statement_Interface
*/
public function addIndex($tableName, $indexName, $fields, $indexType = self::INDEX_TYPE_INDEX, $schemaName = null);
/**
* Drop the index from table
*
* @param string $tableName
* @param string $keyName
* @param string $schemaName
* @return bool|\Zend_Db_Statement_Interface
*/
public function dropIndex($tableName, $keyName, $schemaName = null);
/**
* Returns the table index information
*
* The return value is an associative array keyed by the UPPERCASE index key (except for primary key,
* that is always stored under 'PRIMARY' key) as returned by the RDBMS.
*
* The value of each array element is an associative array
* with the following keys:
*
* SCHEMA_NAME => string; name of database or schema
* TABLE_NAME => string; name of the table
* KEY_NAME => string; the original index name
* COLUMNS_LIST => array; array of index column names
* INDEX_TYPE => string; lowercase, create index type
* INDEX_METHOD => string; index method using
* type => string; see INDEX_TYPE
* fields => array; see COLUMNS_LIST
*
* @param string $tableName
* @param string $schemaName
* @return array
*/
public function getIndexList($tableName, $schemaName = null);
/**
* Add new Foreign Key to table
*
* If Foreign Key with same name is exist - it will be deleted
*
* @param string $fkName
* @param string $tableName
* @param string $columnName
* @param string $refTableName
* @param string $refColumnName
* @param string $onDelete
* @param boolean $purge trying remove invalid data
* @param string $schemaName
* @param string $refSchemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function addForeignKey(
$fkName,
$tableName,
$columnName,
$refTableName,
$refColumnName,
$onDelete = self::FK_ACTION_CASCADE,
$purge = false,
$schemaName = null,
$refSchemaName = null
);
/**
* Drop the Foreign Key from table
*
* @param string $tableName
* @param string $fkName
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function dropForeignKey($tableName, $fkName, $schemaName = null);
/**
* Retrieve the foreign keys descriptions for a table.
*
* The return value is an associative array keyed by the UPPERCASE foreign key,
* as returned by the RDBMS.
*
* The value of each array element is an associative array
* with the following keys:
*
* FK_NAME => string; original foreign key name
* SCHEMA_NAME => string; name of database or schema
* TABLE_NAME => string;
* COLUMN_NAME => string; column name
* REF_SCHEMA_NAME => string; name of reference database or schema
* REF_TABLE_NAME => string; reference table name
* REF_COLUMN_NAME => string; reference column name
* ON_DELETE => string; action type on delete row
* ON_UPDATE => string; action type on update row
*
* @param string $tableName
* @param string $schemaName
* @return array
*/
public function getForeignKeys($tableName, $schemaName = null);
/**
* Creates and returns a new \Magento\Framework\DB\Select object for this adapter.
*
* @return \Magento\Framework\DB\Select
*/
public function select();
/**
* Inserts a table row with specified data.
*
* @param mixed $table The table to insert data into.
* @param array $data Column-value pairs or array of column-value pairs.
* @param array $fields update fields pairs or values
* @return int The number of affected rows.
*/
public function insertOnDuplicate($table, array $data, array $fields = []);
/**
* Inserts a table multiply rows with specified data.
*
* @param mixed $table The table to insert data into.
* @param array $data Column-value pairs or array of Column-value pairs.
* @return int The number of affected rows.
*/
public function insertMultiple($table, array $data);
/**
* Insert array into a table based on columns definition
*
* $data can be represented as:
* - arrays of values ordered according to columns in $columns array
* array(
* array('value1', 'value2'),
* array('value3', 'value4'),
* )
* - array of values, if $columns contains only one column
* array('value1', 'value2')
*
* @param string $table
* @param string[] $columns the data array column map
* @param array $data
* @return int
*/
public function insertArray($table, array $columns, array $data);
/**
* Inserts a table row with specified data.
*
* @param mixed $table The table to insert data into.
* @param array $bind Column-value pairs.
* @return int The number of affected rows.
*/
public function insert($table, array $bind);
/**
* Inserts a table row with specified data
*
* Special for Zero values to identity column
*
* @param string $table
* @param array $bind
* @return int The number of affected rows.
*/
public function insertForce($table, array $bind);
/**
* Updates table rows with specified data based on a WHERE clause.
*
* The $where parameter in this instance can be a single WHERE clause or an array containing a multiple. In all
* instances, a WHERE clause can be a string or an instance of {@see Zend_Db_Expr}. In the event you use an array,
* you may specify the clause as the key and a value to be bound to it as the value. E.g., ['amt > ?' => $amt]
*
* If the $where parameter is an array of multiple clauses, they will be joined by AND, with each clause wrapped in
* parenthesis. If you wish to use an OR, you must give a single clause that is an instance of {@see Zend_Db_Expr}
*
* @param mixed $table The table to update.
* @param array $bind Column-value pairs.
* @param mixed $where UPDATE WHERE clause(s).
* @return int The number of affected rows.
*/
public function update($table, array $bind, $where = '');
/**
* Deletes table rows based on a WHERE clause.
*
* @param mixed $table The table to update.
* @param mixed $where DELETE WHERE clause(s).
* @return int The number of affected rows.
*/
public function delete($table, $where = '');
/**
* Prepares and executes an SQL statement with bound data.
*
* @param mixed $sql The SQL statement with placeholders.
* May be a string or \Magento\Framework\DB\Select.
* @param mixed $bind An array of data or data itself to bind to the placeholders.
* @return \Zend_Db_Statement_Interface
*/
public function query($sql, $bind = []);
/**
* Fetches all SQL result rows as a sequential array.
*
* Uses the current fetchMode for the adapter.
*
* @param string|\Magento\Framework\DB\Select $sql An SQL SELECT statement.
* @param mixed $bind Data to bind into SELECT placeholders.
* @param mixed $fetchMode Override current fetch mode.
* @return array
*/
public function fetchAll($sql, $bind = [], $fetchMode = null);
/**
* Fetches the first row of the SQL result.
*
* Uses the current fetchMode for the adapter.
*
* @param string|\Magento\Framework\DB\Select $sql An SQL SELECT statement.
* @param mixed $bind Data to bind into SELECT placeholders.
* @param mixed $fetchMode Override current fetch mode.
* @return mixed Array, object, or scalar depending on fetch mode.
*/
public function fetchRow($sql, $bind = [], $fetchMode = null);
/**
* Fetches all SQL result rows as an associative array.
*
* The first column is the key, the entire row array is the
* value. You should construct the query to be sure that
* the first column contains unique values, or else
* rows with duplicate values in the first column will
* overwrite previous data.
*
* @param string|\Magento\Framework\DB\Select $sql An SQL SELECT statement.
* @param mixed $bind Data to bind into SELECT placeholders.
* @return array
*/
public function fetchAssoc($sql, $bind = []);
/**
* Fetches the first column of all SQL result rows as an array.
*
* The first column in each row is used as the array key.
*
* @param string|\Magento\Framework\DB\Select $sql An SQL SELECT statement.
* @param mixed $bind Data to bind into SELECT placeholders.
* @return array
*/
public function fetchCol($sql, $bind = []);
/**
* Fetches all SQL result rows as an array of key-value pairs.
*
* The first column is the key, the second column is the
* value.
*
* @param string|\Magento\Framework\DB\Select $sql An SQL SELECT statement.
* @param mixed $bind Data to bind into SELECT placeholders.
* @return array
*/
public function fetchPairs($sql, $bind = []);
/**
* Fetches the first column of the first row of the SQL result.
*
* @param string|\Magento\Framework\DB\Select $sql An SQL SELECT statement.
* @param mixed $bind Data to bind into SELECT placeholders.
* @return string
*/
public function fetchOne($sql, $bind = []);
/**
* Safely quotes a value for an SQL statement.
*
* If an array is passed as the value, the array values are quoted
* and then returned as a comma-separated string.
*
* @param mixed $value The value to quote.
* @param mixed $type OPTIONAL the SQL datatype name, or constant, or null.
* @return mixed An SQL-safe quoted value (or string of separated values).
*/
public function quote($value, $type = null);
/**
* Quotes a value and places into a piece of text at a placeholder.
*
* The placeholder is a question-mark; all placeholders will be replaced
* with the quoted value. For example:
*
* <code>
* $text = "WHERE date < ?";
* $date = "2005-01-02";
* $safe = $sql->quoteInto($text, $date);
* // $safe = "WHERE date < '2005-01-02'"
* </code>
*
* @param string $text The text with a placeholder.
* @param mixed $value The value to quote.
* @param string $type OPTIONAL SQL datatype
* @param integer $count OPTIONAL count of placeholders to replace
* @return string An SQL-safe quoted value placed into the original text.
*/
public function quoteInto($text, $value, $type = null, $count = null);
/**
* Quotes an identifier.
*
* Accepts a string representing a qualified identifier. For Example:
* <code>
* $adapter->quoteIdentifier('myschema.mytable')
* </code>
* Returns: "myschema"."mytable"
*
* Or, an array of one or more identifiers that may form a qualified identifier:
* <code>
* $adapter->quoteIdentifier(array('myschema','my.table'))
* </code>
* Returns: "myschema"."my.table"
*
* The actual quote character surrounding the identifiers may vary depending on
* the adapter.
*
* @param string|array|\Zend_Db_Expr $ident The identifier.
* @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
* @return string The quoted identifier.
*/
public function quoteIdentifier($ident, $auto = false);
/**
* Quote a column identifier and alias.
*
* @param string|array|\Zend_Db_Expr $ident The identifier or expression.
* @param string $alias An alias for the column.
* @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
* @return string The quoted identifier and alias.
*/
public function quoteColumnAs($ident, $alias, $auto = false);
/**
* Quote a table identifier and alias.
*
* @param string|array|\Zend_Db_Expr $ident The identifier or expression.
* @param string $alias An alias for the table.
* @param boolean $auto If true, heed the AUTO_QUOTE_IDENTIFIERS config option.
* @return string The quoted identifier and alias.
*/
public function quoteTableAs($ident, $alias = null, $auto = false);
/**
* Format Date to internal database date format
*
* @param int|string|\DateTimeInterface $date
* @param boolean $includeTime
* @return \Zend_Db_Expr
*/
public function formatDate($date, $includeTime = true);
/**
* Run additional environment before setup
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function startSetup();
/**
* Run additional environment after setup
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function endSetup();
/**
* Set cache adapter
*
* @param \Magento\Framework\Cache\FrontendInterface $cacheAdapter
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function setCacheAdapter(\Magento\Framework\Cache\FrontendInterface $cacheAdapter);
/**
* Allow DDL caching
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function allowDdlCache();
/**
* Disallow DDL caching
*
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function disallowDdlCache();
/**
* Reset cached DDL data from cache
*
* If table name is null - reset all cached DDL data
*
* @param string $tableName
* @param string $schemaName OPTIONAL
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function resetDdlCache($tableName = null, $schemaName = null);
/**
* Save DDL data into cache
*
* @param string $tableCacheKey
* @param int $ddlType
* @param mixed $data
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function saveDdlCache($tableCacheKey, $ddlType, $data);
/**
* Load DDL data from cache
*
* Return false if cache does not exists
*
* @param string $tableCacheKey the table cache key
* @param int $ddlType the DDL constant
* @return string|array|int|false
*/
public function loadDdlCache($tableCacheKey, $ddlType);
/**
* Build SQL statement for condition
*
* If $condition integer or string - exact value will be filtered ('eq' condition)
*
* If $condition is array - one of the following structures is expected:
* - array("from" => $fromValue, "to" => $toValue)
* - array("eq" => $equalValue)
* - array("neq" => $notEqualValue)
* - array("like" => $likeValue)
* - array("in" => array($inValues))
* - array("nin" => array($notInValues))
* - array("notnull" => $valueIsNotNull)
* - array("null" => $valueIsNull)
* - array("moreq" => $moreOrEqualValue)
* - array("gt" => $greaterValue)
* - array("lt" => $lessValue)
* - array("gteq" => $greaterOrEqualValue)
* - array("lteq" => $lessOrEqualValue)
* - array("finset" => $valueInSet)
* - array("regexp" => $regularExpression)
* - array("seq" => $stringValue)
* - array("sneq" => $stringValue)
*
* If non matched - sequential array is expected and OR conditions
* will be built using above mentioned structure
*
* @param string $fieldName
* @param integer|string|array $condition
* @return string
*/
public function prepareSqlCondition($fieldName, $condition);
/**
* Prepare value for save in column
*
* Return converted to column data type value
*
* @param array $column the column describe array
* @param mixed $value
* @return mixed
*/
public function prepareColumnValue(array $column, $value);
/**
* Generate fragment of SQL, that check condition and return true or false value
*
* @param string $condition expression
* @param string $true true value
* @param string $false false value
* @return \Zend_Db_Expr
*/
public function getCheckSql($condition, $true, $false);
/**
* Returns valid IFNULL expression
*
* @param string $expression
* @param string|int $value OPTIONAL. Applies when $expression is NULL
* @return \Zend_Db_Expr
*/
public function getIfNullSql($expression, $value = 0);
/**
* Generate fragment of SQL, that combine together (concatenate) the results from data array
*
* All arguments in data must be quoted
*
* @param array $data
* @param string $separator concatenate with separator
* @return \Zend_Db_Expr
*/
public function getConcatSql(array $data, $separator = null);
/**
* Generate fragment of SQL that returns length of character string
*
* The string argument must be quoted
*
* @param string $string
* @return \Zend_Db_Expr
*/
public function getLengthSql($string);
/**
* Generate fragment of SQL, that compare with two or more arguments, and returns the smallest
* (minimum-valued) argument
* All arguments in data must be quoted
*
* @param array $data
* @return \Zend_Db_Expr
*/
public function getLeastSql(array $data);
/**
* Generate fragment of SQL, that compare with two or more arguments, and returns the largest
* (maximum-valued) argument
* All arguments in data must be quoted
*
* @param array $data
* @return \Zend_Db_Expr
*/
public function getGreatestSql(array $data);
/**
* Add time values (intervals) to a date value
*
* @see INTERVAL_* constants for $unit
*
* @param \Zend_Db_Expr|string $date quoted field name or SQL statement
* @param int $interval
* @param string $unit
* @return \Zend_Db_Expr
*/
public function getDateAddSql($date, $interval, $unit);
/**
* Subtract time values (intervals) to a date value
*
* @see INTERVAL_* constants for $unit
*
* @param \Zend_Db_Expr|string $date quoted field name or SQL statement
* @param int|string $interval
* @param string $unit
* @return \Zend_Db_Expr
*/
public function getDateSubSql($date, $interval, $unit);
/**
* Format date as specified
*
* Supported format Specifier
*
* %H Hour (00..23)
* %i Minutes, numeric (00..59)
* %s Seconds (00..59)
* %d Day of the month, numeric (00..31)
* %m Month, numeric (00..12)
* %Y Year, numeric, four digits
*
* @param \Zend_Db_Expr|string $date quoted field name or SQL statement
* @param string $format
* @return \Zend_Db_Expr
*/
public function getDateFormatSql($date, $format);
/**
* Extract the date part of a date or datetime expression
*
* @param \Zend_Db_Expr|string $date quoted field name or SQL statement
* @return \Zend_Db_Expr
*/
public function getDatePartSql($date);
/**
* Prepare substring sql function
*
* @param \Zend_Db_Expr|string $stringExpression quoted field name or SQL statement
* @param int|string|\Zend_Db_Expr $pos
* @param int|string|\Zend_Db_Expr|null $len
* @return \Zend_Db_Expr
*/
public function getSubstringSql($stringExpression, $pos, $len = null);
/**
* Prepare standard deviation sql function
*
* @param \Zend_Db_Expr|string $expressionField quoted field name or SQL statement
* @return \Zend_Db_Expr
*/
public function getStandardDeviationSql($expressionField);
/**
* Extract part of a date
*
* @see INTERVAL_* constants for $unit
*
* @param \Zend_Db_Expr|string $date quoted field name or SQL statement
* @param string $unit
* @return \Zend_Db_Expr
*/
public function getDateExtractSql($date, $unit);
/**
* Retrieve valid table name
*
* Check table name length and allowed symbols
*
* @param string $tableName
* @return string
*/
public function getTableName($tableName);
/**
* Build a trigger name based on table name and trigger details
*
* @param string $tableName The table that is the subject of the trigger
* @param string $time Either "before" or "after"
* @param string $event The DB level event which activates the trigger, i.e. "update" or "insert"
* @return string
*/
public function getTriggerName($tableName, $time, $event);
/**
* Retrieve valid index name
*
* Check index name length and allowed symbols
*
* @param string $tableName
* @param string|array $fields the columns list
* @param string $indexType
* @return string
*/
public function getIndexName($tableName, $fields, $indexType = '');
/**
* Retrieve valid foreign key name
*
* Check foreign key name length and allowed symbols
*
* @param string $priTableName
* @param string $priColumnName
* @param string $refTableName
* @param string $refColumnName
* @return string
*/
public function getForeignKeyName($priTableName, $priColumnName, $refTableName, $refColumnName);
/**
* Stop updating indexes
*
* @param string $tableName
* @param string $schemaName
* @return \Magento\Framework\DB\Adapter\AdapterInterface
*/
public function disableTableKeys($tableName, $schemaName = null);
/**
* Re-create missing indexes
*
* @param string $tableName
* @param string $schemaName