Property | Type | Description | |
---|---|---|---|
$_numericDataTypes | Values are: 0 = 32-bit integer 1 = 64-bit integer 2 = float or decimal | ||
$_pdoType | string | PDO type. |
Method | Description | |
---|---|---|
describeTable ( string $tableName, string $schemaName = null ) : array | Returns the column descriptions for a table. | |
getServerVersion ( ) : string | Retrieve server version in PHP style Pdo_Mssql doesn't support getAttribute(PDO::ATTR_SERVER_VERSION) | |
lastInsertId ( string $tableName = null, string $primaryKey = null ) : string | Gets the last ID generated automatically by an IDENTITY/AUTOINCREMENT column. | |
limit ( string $sql, integer $count, integer $offset ) : string | Adds an adapter-specific LIMIT clause to the SELECT statement. | |
listTables ( ) : array | Returns a list of the tables in the database. |
Method | Description | |
---|---|---|
_beginTransaction ( ) | Begin a transaction. | |
_commit ( ) | Commit a transaction. | |
_connect ( ) : void | ||
_dsn ( ) : string | Creates a PDO DSN for the adapter from $this->_config settings. | |
_quote ( string $value ) : string | Quote a raw string. | |
_rollBack ( ) | Roll-back a transaction. |
protected _beginTransaction ( ) |
protected _commit ( ) |
protected _rollBack ( ) |
public getServerVersion ( ) : string | ||
return | string |
public listTables ( ) : array | ||
return | array |
protected $_numericDataTypes |