Query\Drivers\Pgsql\SQL
PostgreSQL specific SQL
Synopsis
- // methods
- public string explain()
- public string random()
- public string dbList()
- public string tableList()
- public string systemTableList()
- public string viewList()
- public string triggerList()
- public ?string functionList()
- public string procedureList()
- public string sequenceList()
- public string columnList()
- public string typeList()
- public string fkList()
- public string indexList()
- // Inherited methods from AbstractSQL
- public string limit()
Hierarchy
Extends
Coverage
Methods | 0% | 0 / 14 |
Lines | 0% | / |
Methods
public
- columnList() — Return sql to list columns of the specified table
- dbList() — Returns sql to list other databases
- explain() — Get the query plan for the sql query
- fkList() — Get the list of foreign keys for the current table
- functionList() — Return sql to list functions
- indexList() — Get the list of indexes for the current table
- procedureList() — Return sql to list stored procedures
- random() — Random ordering keyword
- sequenceList() — Return sql to list sequences
- systemTableList() — Returns sql to list system tables
- tableList() — Returns sql to list tables
- triggerList() — Returns sql to list triggers
- typeList() — SQL to show list of field types
- viewList() — Returns sql to list views
Inherited from Query\Drivers\AbstractSQL
public
- limit() — Limit clause
History
-
2018-01-24T18:14:03+00:00 (commit #1d583bc)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Add more type hinting
-
2018-01-19T20:47:34+00:00 (commit #369ca6e)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Flatten source structure a bit
-
2018-01-19T18:43:19+00:00 (commit #c735c27)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Update file headers
-
2016-10-14T01:55:23+00:00 (commit #b8d4768)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
camelCase methods and properties
-
2016-10-13T02:12:25+00:00 (commit #6740aae)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
PHP7 or bust!
-
2016-09-07T21:39:19+00:00 (commit #ca60162)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Miscellaneous cleanup and refactoring
-
2016-09-07T17:17:17+00:00 (commit #24f3b1d)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Update header comments
-
2015-11-11T01:59:03+00:00 (commit #2613a1c)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Update lots of comments
-
2015-11-10T15:12:23+00:00 (commit #b5a141f)
Author: Timothy J Warren (tim@timshomepage.net) / Commiter: Timothy J Warren (tim@timshomepage.net)
Make class names Pascal Case
-
2015-07-30T20:40:30+00:00 (commit #225017a)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Lots of refactoring -- accessors/mutators instead of direct access, reduce query builder test database connections, and simplify some logic
-
2015-07-29T20:51:17+00:00 (commit #8511c6a)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Move library into src folder, fix simpletest test runner
-
2015-07-20T19:24:21+00:00 (commit #cd7f904)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Add pdo_firebird driver
-
2015-07-16T21:02:54+00:00 (commit #6b20982)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Fix naming error in pg driver
-
2015-07-16T20:56:13+00:00 (commit #bfc3ea3)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Reorganize drivers into a more modern layout
-
2014-04-24T19:32:09+00:00 (commit #17354ee)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Move SQL and Util classes to their own namespaces
-
2014-04-17T20:41:12+00:00 (commit #d6c0fd2)
Author: Timothy J. Warren (tim@timshomepage.net) / Commiter: Timothy J. Warren (tim@timshomepage.net)
Add update and delete rules to foreign key methods