Méthode |
Description |
|
beginTransaction ( ) : boolean |
Starts a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not
natively support transactions. |
|
commit ( ) : boolean |
Commits a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not
natively support transactions. |
|
getAttribute ( integer $attribute ) : mixed |
Retrieve a database connection attribute. |
|
lastInsertId ( string | null $sequence = null ) : integer |
Returns value of the last inserted ID. |
|
rollBack ( ) : boolean |
Rollbacks a transaction. It is necessary to override PDO's method as MSSQL PDO driver does not
natively support transactions. |
|