Documentation

AdapterInterface
in

Db adapter interface

Tags
category

Pop

author

Nick Sagona, III dev@nolainteractive.com

copyright

Copyright (c) 2009-2021 NOLA Interactive, LLC. (http://www.nolainteractive.com)

license

http://www.popphp.org/license New BSD License

version
5.3.0

Table of Contents

beginTransaction()  : AdapterInterface
Begin a transaction
bindParams()  : AdapterInterface
Bind parameters to a prepared SQL query
clearError()  : AdapterInterface
Clear the error
clearProfiler()  : AdapterInterface
Clear query profiler
commit()  : AdapterInterface
Commit a transaction
connect()  : AdapterInterface
Connect to the database
createSchema()  : Schema
Create Schema builder
createSql()  : Sql
Create SQL builder
disconnect()  : void
Disconnect from the database
escape()  : string
Escape the value
execute()  : AdapterInterface
Execute a prepared SQL query
fetch()  : array<string|int, mixed>
Fetch and return a row from the result
fetchAll()  : array<string|int, mixed>
Fetch and return all rows from the result
getConnection()  : mixed
Get the connection object/resource
getError()  : mixed
Get the error
getLastId()  : int
Return the last ID of the last query
getNumberOfRows()  : int
Return the number of rows from the last query
getOptions()  : array<string|int, mixed>
Get database connection options
getProfiler()  : Profiler
Get query profiler
getResult()  : mixed
Get the result object/resource
getStatement()  : mixed
Get the statement object/resource
getTables()  : array<string|int, mixed>
Return the tables in the database
getVersion()  : string
Return the database version
hasError()  : bool
Determine whether or not there is an error
hasOptions()  : bool
Has database connection options
hasResult()  : bool
Determine whether or not a result resource exists
hasStatement()  : bool
Determine whether or not a statement resource exists
hasTable()  : bool
Return if the database has a table
isConnected()  : bool
Determine whether or not connected
listen()  : AdapterInterface
Add query listener to the adapter
prepare()  : AdapterInterface
Prepare a SQL query.
query()  : AdapterInterface
Execute a SQL query directly
rollback()  : AdapterInterface
Rollback a transaction
setError()  : AdapterInterface
Set the error
setOptions()  : AdapterInterface
Set database connection options
setProfiler()  : AdapterInterface
Set query profiler
throwError()  : void
Throw a database error exception

Methods

disconnect()

Disconnect from the database

public disconnect() : void
Return values
void

escape()

Escape the value

public escape(string $value) : string
Parameters
$value : string
Return values
string

fetch()

Fetch and return a row from the result

public fetch() : array<string|int, mixed>
Return values
array<string|int, mixed>

fetchAll()

Fetch and return all rows from the result

public fetchAll() : array<string|int, mixed>
Return values
array<string|int, mixed>

getConnection()

Get the connection object/resource

public getConnection() : mixed
Return values
mixed

getError()

Get the error

public getError() : mixed
Return values
mixed

getLastId()

Return the last ID of the last query

public getLastId() : int
Return values
int

getNumberOfRows()

Return the number of rows from the last query

public getNumberOfRows() : int
Return values
int

getOptions()

Get database connection options

public getOptions() : array<string|int, mixed>
Return values
array<string|int, mixed>

getResult()

Get the result object/resource

public getResult() : mixed
Return values
mixed

getStatement()

Get the statement object/resource

public getStatement() : mixed
Return values
mixed

getTables()

Return the tables in the database

public getTables() : array<string|int, mixed>
Return values
array<string|int, mixed>

getVersion()

Return the database version

public getVersion() : string
Return values
string

hasError()

Determine whether or not there is an error

public hasError() : bool
Return values
bool

hasOptions()

Has database connection options

public hasOptions() : bool
Return values
bool

hasResult()

Determine whether or not a result resource exists

public hasResult() : bool
Return values
bool

hasStatement()

Determine whether or not a statement resource exists

public hasStatement() : bool
Return values
bool

hasTable()

Return if the database has a table

public hasTable(string $table) : bool
Parameters
$table : string
Return values
bool

isConnected()

Determine whether or not connected

public isConnected() : bool
Return values
bool

throwError()

Throw a database error exception

public throwError() : void
Tags
throws
Exception
Return values
void

Search results