Class Postgres
Property Summary
-
$_baseConfig protected
array
Base configuration settings for Postgres driver
-
$_connection protected
PDO
Instance of PDO.
-
$_endQuote protected
string
String used to end a database identifier quoting to make it safe
-
$_schemaDialect protected
Cake\Database\Schema\PostgresSchema
The schema dialect class for this driver
-
$_startQuote protected
string
String used to start a database identifier quoting to make it safe
Method Summary
-
_connect() protected
Establishes a connection to the database server
-
_deleteQueryTranslator() protected
Apply translation steps to delete queries.
-
_expressionTranslators() protected
Returns a dictionary of expressions to be transformed when compiling a Query to SQL. Array keys are method names to be called in this class
-
_insertQueryTranslator() protected
Modifies the original insert query to append a "RETURNING *" epilogue so that the latest insert id can be retrieved
-
_selectQueryTranslator() protected
Apply translation steps to select queries.
-
_transformDistinct() protected
Distinct clause needs no transformation
-
_transformFunctionExpression() protected
Receives a FunctionExpression and changes it so that it conforms to this SQL dialect.
-
_updateQueryTranslator() protected
Apply translation steps to update queries.
-
beginTransaction() public
Starts a transaction
-
commitTransaction() public
Commits a transaction
-
connect() public
Establishes a connection to the database server
-
connection() public
Returns correct connection resource or object that is internally used If first argument is passed, it will set internal connection object or result to the value passed
-
disableForeignKeySQL() public
{@inheritDoc}
-
disconnect() public
Disconnects from database server
-
enableForeignKeySQL() public
{@inheritDoc}
-
enabled() public
Returns whether php is able to use this driver for connecting to database
-
lastInsertId() public
Returns last id generated for a table or sequence in database
-
prepare() public
Prepares a sql statement to be executed
-
queryTranslator() public
Returns a callable function that will be used to transform a passed Query object. This function, in turn, will return an instance of a Query object that has been transformed to accommodate any specificities of the SQL dialect in use.
-
quote() public
Returns a value in a safe representation to be used in a query string
-
quoteIdentifier() public
Quotes a database identifier (a column name, table name, etc..) to be used safely in queries without the risk of using reserved words
-
releaseSavePointSQL() public
Returns a SQL snippet for releasing a previously created save point
-
rollbackSavePointSQL() public
Returns a SQL snippet for rollbacking a previously created save point
-
rollbackTransaction() public
Rollsback a transaction
-
savePointSQL() public
Returns a SQL snippet for creating a new transaction savepoint
-
schemaDialect() public
Get the schema dialect.
-
setEncoding() public
Sets connection encoding
-
setSchema() public
Sets connection default schema, if any relation defined in a query is not fully qualified postgres will fallback to looking the relation into defined default schema
-
supportsQuoting() public
Checks if the driver supports quoting, as PDO_ODBC does not support it.
Method Detail
_connect() ¶ protected
_connect(string $dsn, array $config): bool
Establishes a connection to the database server
Parameters
-
string
$dsn A Driver-specific PDO-DSN
-
array
$config configuration to be used for creating connection
Returns
bool
_deleteQueryTranslator() ¶ protected
_deleteQueryTranslator(Query $query): Query
Apply translation steps to delete queries.
Chops out aliases on delete query conditions as most database dialects do not support aliases in delete queries. This also removes aliases in table names as they frequently don't work either.
We are intentionally not supporting deletes with joins as they have even poorer support.
Parameters
-
Query
$query The query to translate
Returns
Query
_expressionTranslators() ¶ protected
_expressionTranslators(): array
Returns a dictionary of expressions to be transformed when compiling a Query to SQL. Array keys are method names to be called in this class
Returns
array
_insertQueryTranslator() ¶ protected
_insertQueryTranslator(Query $query): Cake\Database\Query
Modifies the original insert query to append a "RETURNING *" epilogue so that the latest insert id can be retrieved
Parameters
-
Query
$query The query to translate.
Returns
Cake\Database\Query
_selectQueryTranslator() ¶ protected
_selectQueryTranslator(Query $query): Query
Apply translation steps to select queries.
Parameters
-
Query
$query The query to translate
Returns
Query
_transformDistinct() ¶ protected
_transformDistinct(Query $query): Cake\Database\Query
Distinct clause needs no transformation
Parameters
-
Query
$query The query to be transformed
Returns
Cake\Database\Query
_transformFunctionExpression() ¶ protected
_transformFunctionExpression(Cake\Database\Expression\FunctionExpression $expression): void
Receives a FunctionExpression and changes it so that it conforms to this SQL dialect.
Parameters
-
Cake\Database\Expression\FunctionExpression
$expression The function expression to convert to postgres SQL.
Returns
void
_updateQueryTranslator() ¶ protected
_updateQueryTranslator(Query $query): Query
Apply translation steps to update queries.
Parameters
-
Query
$query The query to translate
Returns
Query
connection() ¶ public
connection(nullPDO $connection = null): mixed
Returns correct connection resource or object that is internally used If first argument is passed, it will set internal connection object or result to the value passed
Parameters
-
nullPDO
$connection optional The PDO connection instance.
Returns
mixed
enabled() ¶ public
enabled(): bool
Returns whether php is able to use this driver for connecting to database
Returns
bool
lastInsertId() ¶ public
lastInsertId(string|null $table = null, string|null $column = null): string|int
Returns last id generated for a table or sequence in database
Parameters
-
string|null
$table optional table name or sequence to get last insert value from
-
string|null
$column optional the name of the column representing the primary key
Returns
string|int
prepare() ¶ public
prepare(stringCake\Database\Query $query): Cake\Database\StatementInterface
Prepares a sql statement to be executed
Parameters
-
stringCake\Database\Query
$query The query to turn into a prepared statement.
Returns
Cake\Database\StatementInterface
queryTranslator() ¶ public
queryTranslator(string $type): callable
Returns a callable function that will be used to transform a passed Query object. This function, in turn, will return an instance of a Query object that has been transformed to accommodate any specificities of the SQL dialect in use.
Parameters
-
string
$type the type of query to be transformed (select, insert, update, delete)
Returns
callable
quote() ¶ public
quote(mixed $value, string $type): string
Returns a value in a safe representation to be used in a query string
Parameters
-
mixed
$value The value to quote.
-
string
$type Type to be used for determining kind of quoting to perform
Returns
string
quoteIdentifier() ¶ public
quoteIdentifier(string $identifier): string
Quotes a database identifier (a column name, table name, etc..) to be used safely in queries without the risk of using reserved words
Parameters
-
string
$identifier The identifier to quote.
Returns
string
releaseSavePointSQL() ¶ public
releaseSavePointSQL(string $name): string
Returns a SQL snippet for releasing a previously created save point
Parameters
-
string
$name save point name
Returns
string
rollbackSavePointSQL() ¶ public
rollbackSavePointSQL(string $name): string
Returns a SQL snippet for rollbacking a previously created save point
Parameters
-
string
$name save point name
Returns
string
savePointSQL() ¶ public
savePointSQL(string $name): string
Returns a SQL snippet for creating a new transaction savepoint
Parameters
-
string
$name save point name
Returns
string
schemaDialect() ¶ public
schemaDialect(): Cake\Database\Schema\PostgresSchema
Get the schema dialect.
Used by Cake\Database\Schema package to reflect schema and generate schema.
Returns
Cake\Database\Schema\PostgresSchema
setEncoding() ¶ public
setEncoding(string $encoding): void
Sets connection encoding
Parameters
-
string
$encoding The encoding to use.
Returns
void
setSchema() ¶ public
setSchema(string $schema): void
Sets connection default schema, if any relation defined in a query is not fully qualified postgres will fallback to looking the relation into defined default schema
Parameters
-
string
$schema The schema names to set
search_path
to.
Returns
void
supportsQuoting() ¶ public
supportsQuoting(): bool
Checks if the driver supports quoting, as PDO_ODBC does not support it.
Returns
bool