AdapterInterface.php
12.3 KB
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
<?php
namespace Phalcon\Db {
/**
* Phalcon\Db\AdapterInterface initializer
*/
interface AdapterInterface {
/**
* Constructor for \Phalcon\Db\Adapter
*
* @param array $descriptor
*/
public function __construct($descriptor);
/**
* Returns the first row in a SQL query result
*
* @param string $sqlQuery
* @param int $fetchMode
* @param int $placeholders
* @return array
*/
public function fetchOne($sqlQuery, $fetchMode=null, $placeholders=null);
/**
* Dumps the complete result of a query into an array
*
* @param string $sqlQuery
* @param int $fetchMode
* @param int $placeholders
* @return array
*/
public function fetchAll($sqlQuery, $fetchMode=null, $placeholders=null);
/**
* Inserts data into a table using custom RBDM SQL syntax
*
* @param string $table
* @param array $values
* @param array $fields
* @param array $dataTypes
* @return boolean
*/
public function insert($table, $values, $fields=null, $dataTypes=null);
/**
* Updates data on a table using custom RBDM SQL syntax
*
* @param string $table
* @param array $fields
* @param array $values
* @param string $whereCondition
* @param array $dataTypes
* @return boolean
*/
public function update($table, $fields, $values, $whereCondition=null, $dataTypes=null);
/**
* Deletes data from a table using custom RBDM SQL syntax
*
* @param string $table
* @param string $whereCondition
* @param array $placeholders
* @param array $dataTypes
* @return boolean
*/
public function delete($table, $whereCondition=null, $placeholders=null, $dataTypes=null);
/**
* Gets a list of columns
*
* @param array $columnList
* @return string
*/
public function getColumnList($columnList);
/**
* Appends a LIMIT clause to $sqlQuery argument
*
* @param string $sqlQuery
* @param int $number
* @return string
*/
public function limit($sqlQuery, $number);
/**
* Generates SQL checking for the existence of a schema.table
*
* @param string $tableName
* @param string $schemaName
* @return string
*/
public function tableExists($tableName, $schemaName=null);
/**
* Generates SQL checking for the existence of a schema.view
*
* @param string $viewName
* @param string $schemaName
* @return string
*/
public function viewExists($viewName, $schemaName=null);
/**
* Returns a SQL modified with a FOR UPDATE clause
*
* @param string $sqlQuery
* @return string
*/
public function forUpdate($sqlQuery);
/**
* Returns a SQL modified with a LOCK IN SHARE MODE clause
*
* @param string $sqlQuery
* @return string
*/
public function sharedLock($sqlQuery);
/**
* Creates a table
*
* @param string $tableName
* @param string $schemaName
* @param array $definition
* @return boolean
*/
public function createTable($tableName, $schemaName, $definition);
/**
* Drops a table from a schema/database
*
* @param string $tableName
* @param string $schemaName
* @param boolean $ifExists
* @return boolean
*/
public function dropTable($tableName, $schemaName=null, $ifExists=null);
/**
* Creates a view
*
* @param string $tableName
* @param array $definition
* @param string $schemaName
* @return boolean
*/
public function createView($viewName, $definition, $schemaName=null);
/**
* Drops a view
*
* @param string $viewName
* @param string $schemaName
* @param boolean $ifExists
* @return boolean
*/
public function dropView($viewName, $schemaName=null, $ifExists=null);
/**
* Adds a column to a table
*
* @param string $tableName
* @param string $schemaName
* @param \Phalcon\Db\ColumnInterface $column
* @return boolean
*/
public function addColumn($tableName, $schemaName, $column);
/**
* Modifies a table column based on a definition
*
* @param string $tableName
* @param string $schemaName
* @param \Phalcon\Db\ColumnInterface $column
* @return boolean
*/
public function modifyColumn($tableName, $schemaName, $column);
/**
* Drops a column from a table
*
* @param string $tableName
* @param string $schemaName
* @param string $columnName
* @return boolean
*/
public function dropColumn($tableName, $schemaName, $columnName);
/**
* Adds an index to a table
*
* @param string $tableName
* @param string $schemaName
* @param \Phalcon\Db\IndexInterface $index
* @return boolean
*/
public function addIndex($tableName, $schemaName, $index);
/**
* Drop an index from a table
*
* @param string $tableName
* @param string $schemaName
* @param string $indexName
* @return boolean
*/
public function dropIndex($tableName, $schemaName, $indexName);
/**
* Adds a primary key to a table
*
* @param string $tableName
* @param string $schemaName
* @param \Phalcon\Db\IndexInterface $index
* @return boolean
*/
public function addPrimaryKey($tableName, $schemaName, $index);
/**
* Drops primary key from a table
*
* @param string $tableName
* @param string $schemaName
* @return boolean
*/
public function dropPrimaryKey($tableName, $schemaName);
/**
* Adds a foreign key to a table
*
* @param string $tableName
* @param string $schemaName
* @param \Phalcon\Db\ReferenceInterface $reference
* @return boolean true
*/
public function addForeignKey($tableName, $schemaName, $reference);
/**
* Drops a foreign key from a table
*
* @param string $tableName
* @param string $schemaName
* @param string $referenceName
* @return boolean true
*/
public function dropForeignKey($tableName, $schemaName, $referenceName);
/**
* Returns the SQL column definition from a column
*
* @param \Phalcon\Db\ColumnInterface $column
* @return string
*/
public function getColumnDefinition($column);
/**
* List all tables on a database
*
* @param string $schemaName
* @return array
*/
public function listTables($schemaName=null);
/**
* List all views on a database
*
* @param string $schemaName
* @return array
*/
public function listViews($schemaName=null);
/**
* Return descriptor used to connect to the active database
*
* @return array
*/
public function getDescriptor();
/**
* Gets the active connection unique identifier
*
* @return string
*/
public function getConnectionId();
/**
* Active SQL statement in the object
*
* @return string
*/
public function getSQLStatement();
/**
* Active SQL statement in the object without replace bound paramters
*
* @return string
*/
public function getRealSQLStatement();
/**
* Active SQL statement in the object
*
* @return array
*/
public function getSQLVariables();
/**
* Active SQL statement in the object
*
* @return array
*/
public function getSQLBindTypes();
/**
* Returns type of database system the adapter is used for
*
* @return string
*/
public function getType();
/**
* Returns the name of the dialect used
*
* @return string
*/
public function getDialectType();
/**
* Returns internal dialect instance
*
* @return \Phalcon\Db\DialectInterface
*/
public function getDialect();
/**
* This method is automatically called in \Phalcon\Db\Adapter\Pdo constructor.
* Call it when you need to restore a database connection
*
* @param array $descriptor
* @return boolean
*/
public function connect($descriptor=null);
/**
* Sends SQL statements to the database server returning the success state.
* Use this method only when the SQL statement sent to the server return rows
*
* @param string $sqlStatement
* @param array $placeholders
* @param array $dataTypes
* @return \Phalcon\Db\ResultInterface
*/
public function query($sqlStatement, $placeholders=null, $dataTypes=null);
/**
* Sends SQL statements to the database server returning the success state.
* Use this method only when the SQL statement sent to the server don't return any row
*
* @param string $sqlStatement
* @param array $placeholders
* @param array $dataTypes
* @return boolean
*/
public function execute($sqlStatement, $placeholders=null, $dataTypes=null);
/**
* Returns the number of affected rows by the last INSERT/UPDATE/DELETE reported by the database system
*
* @return int
*/
public function affectedRows();
/**
* Closes active connection returning success. \Phalcon automatically closes and destroys active connections within \Phalcon\Db\Pool
*
* @return boolean
*/
public function close();
/**
* Escapes a column/table/schema name
*
* @param string $identifier
* @return string
*/
public function escapeIdentifier($identifier);
/**
* Escapes a value to avoid SQL injections
*
* @param string $str
* @return string
*/
public function escapeString($str);
/**
* Converts bound params like :name: or ?1 into ? bind params
*
* @param string $sqlStatement
* @param array $params
* @return array
*/
public function convertBoundParams($sqlStatement, $params);
/**
* Returns insert id for the auto_increment column inserted in the last SQL statement
*
* @param string $sequenceName
* @return int
*/
public function lastInsertId($sequenceName=null);
/**
* Starts a transaction in the connection
*
* @return boolean
*/
public function begin();
/**
* Rollbacks the active transaction in the connection
*
* @return boolean
*/
public function rollback();
/**
* Commits the active transaction in the connection
*
* @return boolean
*/
public function commit();
/**
* Checks whether connection is under database transaction
*
* @return boolean
*/
public function isUnderTransaction();
/**
* Return internal PDO handler
*
* @return \PDO
*/
public function getInternalHandler();
/**
* Lists table indexes
*
* @param string $table
* @param string $schema
* @return \Phalcon\Db\IndexInterface[]
*/
public function describeIndexes($table, $schema=null);
/**
* Lists table references
*
* @param string $table
* @param string $schema
* @return \Phalcon\Db\ReferenceInterface[]
*/
public function describeReferences($table, $schema=null);
/**
* Gets creation options from a table
*
* @param string $tableName
* @param string $schemaName
* @return array
*/
public function tableOptions($tableName, $schemaName=null);
/**
* Check whether the database system requires an explicit value for identity columns
*
* @return boolean
*/
public function useExplicitIdValue();
/**
* Return the default identity value to insert in an identity column
*
* @return \Phalcon\Db\RawValue
*/
public function getDefaultIdValue();
/**
* Check whether the database system requires a sequence to produce auto-numeric values
*
* @return boolean
*/
public function supportSequences();
/**
* Creates a new savepoint
*
* @param string $name
* @return boolean
*/
public function createSavepoint($name);
/**
* Releases given savepoint
*
* @param string $name
* @return boolean
*/
public function releaseSavepoint($name);
/**
* Rollbacks given savepoint
*
* @param string $name
* @return boolean
*/
public function rollbackSavepoint($name);
/**
* Set if nested transactions should use savepoints
*
* @param boolean $nestedTransactionsWithSavepoints
* @return \Phalcon\Db\AdapterInterface
*/
public function setNestedTransactionsWithSavepoints($nestedTransactionsWithSavepoints);
/**
* Returns if nested transactions should use savepoints
*
* @return boolean
*/
public function isNestedTransactionsWithSavepoints();
/**
* Returns the savepoint name to use for nested transactions
*
* @return string
*/
public function getNestedTransactionSavepointName();
/**
* Returns an array of \Phalcon\Db\Column objects describing a table
*
* @param string $table
* @param string $schema
* @return \Phalcon\Db\ColumnInterface[]
*/
public function describeColumns($table, $schema=null);
}
}