Properties

$connection

$connection : mixed

Database connection object/resource

Type

mixed

$statement

$statement : mixed

Statement object/resource

Type

mixed

$result

$result : mixed

Result object/resource

Type

mixed

$error

$error : mixed

Error string/object/resource

Type

mixed

$listener

$listener : mixed

Query listener object/resource

Type

mixed

$database

$database : string

Database

Type

string

$statementString

$statementString : string

Prepared statement string

Type

string

$statementResult

$statementResult : boolean

Statement result

Type

boolean

Methods

__construct()

__construct(array  $options) 

Constructor

Instantiate the SQL Server database connection object

Parameters

array $options

beginTransaction()

beginTransaction() : \Pop\Db\Adapter\Sqlsrv

Begin a transaction

Returns

\Pop\Db\Adapter\Sqlsrv

query()

query(mixed  $sql) : \Pop\Db\Adapter\Sqlsrv

Execute a SQL query directly

Parameters

mixed $sql

Returns

\Pop\Db\Adapter\Sqlsrv

prepare()

prepare(mixed  $sql) : \Pop\Db\Adapter\Sqlsrv

Prepare a SQL query

Parameters

mixed $sql

Returns

\Pop\Db\Adapter\Sqlsrv

bindParams()

bindParams(array  $params, mixed  $options = null) : \Pop\Db\Adapter\Sqlsrv

Bind parameters to a prepared SQL query

Parameters

array $params
mixed $options

Returns

\Pop\Db\Adapter\Sqlsrv

fetch()

fetch() : array

Fetch and return a row from the result

Returns

array

fetchAll()

fetchAll() : array

Fetch and return all rows from the result

Returns

array

isConnected()

isConnected() : boolean

Determine whether or not connected

Returns

boolean

createSql()

createSql() : \Pop\Db\Sql

Create SQL builder

Returns

\Pop\Db\Sql

createSchema()

createSchema() : \Pop\Db\Sql\Schema

Create Schema builder

Returns

\Pop\Db\Sql\Schema

getConnection()

getConnection() : mixed

Get the connection object/resource

Returns

mixed

hasStatement()

hasStatement() : boolean

Determine whether or not a statement resource exists

Returns

boolean

getStatement()

getStatement() : mixed

Get the statement object/resource

Returns

mixed

hasResult()

hasResult() : boolean

Determine whether or not a result resource exists

Returns

boolean

getResult()

getResult() : mixed

Get the result object/resource

Returns

mixed

listen()

listen(mixed  $listener) : mixed

Add query listener to the adapter

Parameters

mixed $listener

Returns

mixed

hasError()

hasError() : boolean

Determine whether or not there is an error

Returns

boolean

getError()

getError() : mixed

Get the error

Returns

mixed

throwError()

throwError(string  $error = null) : void

Throw a database error exception

Parameters

string $error

Throws

\Pop\Db\Adapter\Exception

disconnect()

disconnect() : void

Disconnect from the database

escape()

escape(string  $value) : string

Escape the value

Parameters

string $value

Returns

string

getLastId()

getLastId() : integer

Return the last ID of the last query

Returns

integer

getNumberOfRows()

getNumberOfRows() : integer

Return the number of rows from the last query

Returns

integer

getVersion()

getVersion() : string

Return the database version

Returns

string

getTables()

getTables() : array

Return the tables in the database

Returns

array

hasTable()

hasTable(string  $table) : boolean

Return if the database has a table

Parameters

string $table

Returns

boolean

getSqlSrvErrors()

getSqlSrvErrors(boolean  $asString = true) : mixed

Get SQL Server errors

Parameters

boolean $asString

Returns

mixed