Download the PHP package sad_spirit/pg_wrapper without Composer
On this page you can find all versions of the php package sad_spirit/pg_wrapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sad_spirit/pg_wrapper
More information about sad_spirit/pg_wrapper
Files in sad_spirit/pg_wrapper
Package pg_wrapper
Short Description Converter of complex PostgreSQL types and an OO wrapper for PHP's pgsql extension
License BSD-2-Clause
Informations about the package pg_wrapper
sad_spirit\pg_wrapper
Note: master branch is being upgraded for PHP 8.2+
Branch 2.x contains the stable version compatible with PHP 7.2+
This package has two parts and purposes
- Converter of PostgreSQL data types to their PHP equivalents and back and
- An OO wrapper around PHP's native pgsql extension.
While the converter part can be used separately e.g. with PDO, features like transparent conversion of query results work only with the wrapper.
Installation
Require the package with composer:
pg_wrapper requires at least PHP 8.2. Native pgsql extension should be enabled to use classes that access the DB (the extension is not a hard requirement).
Minimum supported PostgreSQL version is 9.3
It is highly recommended to use PSR-6 compatible metadata cache in production to prevent possible metadata lookups from database on each page request.
Why type conversion?
PostgreSQL supports a large (and extensible) set of complex database types: arrays, ranges, geometric and date/time types, composite (row) types, JSON...
Unfortunately neither of PHP extensions for talking to PostgreSQL (pgsql and PDO_pgsql) can map these complex types to their PHP equivalents. They return string representations instead:
yields
And that is where this library kicks in:
yields
Why another OO wrapper when we have PDO, Doctrine DBAL, etc?
The goal of an abstraction layer is to target the Lowest Common Denominator and thus it intentionally hides some low-level APIs that we can use with the native extension and / or adds another level of complexity.
- PDO does not expose
pg_query_params()
, so you have toprepare()
/execute()
each query even if youexecute()
it only once. Doctrine DBAL hasConnection::executeQuery()
but it usesprepare()
/execute()
under the hood. - Postgres only supports
$1
positional parameters natively, while PDO has positional?
and named:foo
parameters. PDO actually rewrites the query to convert the latter to the former, which (before PHP 7.4) prevented using Postgres operators containing?
with PDO and can still lead to problems when using dollar quoting for strings. - PDO does not expose
pg_field_type_oid()
and itsPDOStatement::getColumnMeta()
returns type name without a schema name and may run a metadata query each time to get that.
Another example: a very common problem for database abstraction is providing a list of parameters to a query with an IN
clause
where ?
actually represents a variable number of parameters.
On the one hand, if you don't need the abstraction, then Postgres has native array types, and this can be easily achieved with the following query
passing an array literal as its parameter value
On the other hand, Doctrine DBAL has its own solution for parameter lists
which once again depends on rewriting SQL and does not work with prepare()
/ execute()
. It also has "support" for array
types,
but that just (un)serializes PHP arrays rather than converts them from/to native DB representation,
which will obviously not work with the above query.
Documentation
Is in the wiki
Type conversion:
TypeConverter
interface and its implementationsTypeConverterFactory
interface and its default implementation
Working with PostgreSQL:
All versions of pg_wrapper with dependencies
ext-ctype Version *
ext-json Version *