This is an extension of the default PDO class of MSSQL and DBLIB drivers.
It provides workarounds for improperly implemented functionalities of the MSSQL and DBLIB drivers.
Method DetailsStarts a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not natively support transactions.
public function beginTransaction()
{
$this->exec('BEGIN TRANSACTION');
return true;
}
Commits a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not natively support transactions.
public function commit()
{
$this->exec('COMMIT TRANSACTION');
return true;
}
Retrieve a database connection attribute.
It is necessary to override PDO's method as some MSSQL PDO driver (e.g. dblib) does not support getting attributes.
public mixed getAttribute ( $attribute ) $attribute integerOne of the PDO::ATTR_* constants.
return mixedA successful call returns the value of the requested PDO attribute. An unsuccessful call returns null.
public function getAttribute($attribute)
{
try {
return parent::getAttribute($attribute);
} catch (\PDOException $e) {
switch ($attribute) {
case self::ATTR_SERVER_VERSION:
return $this->query("SELECT CAST(SERVERPROPERTY('productversion') AS VARCHAR)")->fetchColumn();
default:
throw $e;
}
}
}
Returns value of the last inserted ID.
public function lastInsertId($sequence = null)
{
return $this->query('SELECT CAST(COALESCE(SCOPE_IDENTITY(), @@IDENTITY) AS bigint)')->fetchColumn();
}
Rollbacks a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not natively support transactions.
public function rollBack()
{
$this->exec('ROLLBACK TRANSACTION');
return true;
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4