Documentation

Pgsql extends DriverBase
in package

Represents the PostgreSQL driver for the PDO database class.

Table of Contents

Properties

$driver  : string
$dsnParams  : array<string, string>
$password  : string
$pdo  : PDO|null
$username  : string

Methods

connect()  : Pgsql
Connects to the PostgreSQL database using the provided parameters.
disconnect()  : void
Disconnects from the database.
driverSupportsLastInsertId()  : bool
Checks if the PostgreSQL driver supports the last insert ID retrieval.
getDeleteSql()  : string
Generates a DELETE SQL statement for the specified table and WHERE clause.
getDriver()  : string
Returns the driver name for the connection.
getDriverColumnName()  : string
Returns the name of the driver column.
getGetColumnsSql()  : string
Returns the SQL query to retrieve the columns of a table.
getGetTablesSql()  : string
Returns the SQL query to retrieve the list of tables in the database.
getLimitSql()  : string
Returns the SQL query string for applying a limit to the result set in PostgreSQL.
getPdo()  : PDO
Returns the PDO object representing the database connection.

Properties

$driver

protected string $driver = 'pgsql'

$dsnParams

protected array<string, string> $dsnParams = []

The array to store the connection details.

$pdo

protected PDO|null $pdo = null

Methods

connect()

Connects to the PostgreSQL database using the provided parameters.

public connect(array<string, string> $dsnParams, string $username, string $password) : Pgsql
Parameters
$dsnParams : array<string, string>

The parameters for the DSN connection string.

$username : string

The username for the database connection.

$password : string

The password for the database connection.

Return values
Pgsql

The Pgsql object representing the database driver.

disconnect()

Disconnects from the database.

public disconnect() : void

driverSupportsLastInsertId()

Checks if the PostgreSQL driver supports the last insert ID retrieval.

public driverSupportsLastInsertId() : bool
Return values
bool

Returns true if the driver supports last insert ID retrieval, false otherwise.

getDeleteSql()

Generates a DELETE SQL statement for the specified table and WHERE clause.

public getDeleteSql(string $table, string $where) : string
Parameters
$table : string

The name of the table to delete from.

$where : string

The WHERE clause to filter the rows to be deleted.

Return values
string

The generated DELETE SQL statement.

getDriver()

Returns the driver name for the connection.

public getDriver() : string
Return values
string

The driver name.

getDriverColumnName()

Returns the name of the driver column.

public getDriverColumnName() : string
Return values
string

The name of the driver column.

getGetColumnsSql()

Returns the SQL query to retrieve the columns of a table.

public getGetColumnsSql(string $table) : string
Parameters
$table : string

The name of the table.

Return values
string

The SQL query to retrieve the columns of the table.

getGetTablesSql()

Returns the SQL query to retrieve the list of tables in the database.

public getGetTablesSql() : string
Return values
string

The SQL query.

getLimitSql()

Returns the SQL query string for applying a limit to the result set in PostgreSQL.

public getLimitSql(string $limit) : string
Parameters
$limit : string

The limit value to be applied to the query.

Return values
string

The SQL query string with the limit applied.

getPdo()

Returns the PDO object representing the database connection.

public getPdo() : PDO
Return values
PDO

The PDO object representing the database connection.


        
On this page

Search results