OXID eShop CE  6.1.5
OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface Interface Reference
+ Collaboration diagram for OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface:

Public Member Functions

 setConnectionParameters (array $connectionParameters)
 
 connect ()
 
 forceMasterConnection ()
 
 forceSlaveConnection ()
 
 closeConnection ()
 
 setFetchMode ($fetchMode)
 
 getOne ($query, $parameters=[])
 
 getRow ($query, $parameters=[])
 
 getCol ($query, $parameters=[])
 
 getAll ($query, $parameters=[])
 
 select ($query, $parameters=[])
 
 selectLimit ($query, $rowCount=-1, $offset=0, $parameters=[])
 
 execute ($query, $parameters=[])
 
 quote ($value)
 
 quoteArray ($array)
 
 quoteIdentifier ($string)
 
 metaColumns ($table)
 
 startTransaction ()
 
 commitTransaction ()
 
 rollbackTransaction ()
 
 setTransactionIsolationLevel ($level)
 
 isRollbackOnly ()
 
 isTransactionActive ()
 
 getLastInsertId ()
 

Public Attributes

const DUPLICATE_KEY_ERROR_CODE = 1062
 
const FETCH_MODE_DEFAULT = 0
 
const FETCH_MODE_NUM = 1
 
const FETCH_MODE_ASSOC = 2
 
const FETCH_MODE_BOTH = 3
 

Detailed Description

The database connection interface specifies how a database connection should look and act.

Member Function Documentation

◆ closeConnection()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::closeConnection ( )

Closes an open connection

Returns
null

◆ commitTransaction()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::commitTransaction ( )

Commit a database transaction.

Exceptions
DatabaseErrorException

◆ connect()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::connect ( )

Connects to the database using the connection parameters set in DatabaseInterface::setConnectionParameters().

Exceptions
DatabaseConnectionExceptionIf a connection to the database cannot be established

◆ execute()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::execute (   $query,
  $parameters = [] 
)

Execute non read statements like INSERT, UPDATE, DELETE and return the number of rows affected by the statement. This method has to be used EXCLUSIVELY for non read statements.

IMPORTANT: You are strongly encouraged to use prepared statements like this: $resultSet = DatabaseProvider::getDb->execute( 'DELETE * FROM mytable WHERE id = ? OR id = ?', array($id1, $id2) ); If you do not use prepared statements, you MUST quote variables the values with quote(), otherwise you create a SQL injection vulnerability.

Parameters
string$queryThe sql select statement to be executed.
array$parametersThe parameters array.
Exceptions
DatabaseErrorException
Returns
integer Number of rows affected by the SQL statement

◆ forceMasterConnection()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::forceMasterConnection ( )

Force database master connection.

Returns
null

◆ forceSlaveConnection()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::forceSlaveConnection ( )

Force database slave connection. Do not use this function unless you know exactly what you are doing. Usage of this function can lead to write access to a MySQL slave and getting replication out of sync.

Returns
null

◆ getAll()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::getAll (   $query,
  $parameters = [] 
)

Get an multi-dimensional array of arrays with the values of the all rows of a given sql SELECT or SHOW statement. Returns an empty array for any other statement.

The keys of the first level array are numeric. The keys of the second level arrays may be numeric, strings or both, depending on the FETCH_MODE_* of the connection. Set the desired fetch mode with DatabaseInterface::setFetchMode() before calling this method.

IMPORTANT: You are strongly encouraged to use prepared statements like this: $result = DatabaseProvider::getDb->getAll( 'SELECT * FROM ´mytable´ WHERE ´id´ = ? OR ´id´ = ? LIMIT 0, 1', array($id1, $id2) ); If you do not use prepared statements, you MUST quote variables the values with quote(), otherwise you create a SQL injection vulnerability.

Parameters
string$queryIf parameters are given, the "?" in the string will be replaced by the values in the array
array$parametersArray of parameters, for the given sql statement.
See also
DatabaseInterface::setFetchMode()
Doctrine::$fetchMode
Exceptions
DatabaseErrorException

◆ getCol()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::getCol (   $query,
  $parameters = [] 
)

Return the first column of all rows of the results of a given sql SELECT or SHOW statement as an numeric array. Throws an exception for any other statement.

IMPORTANT: You are strongly encouraged to use prepared statements like this: $result = DatabaseProvider::getDb->getRow( 'SELECT * FROM ´mytable´ WHERE ´id´ = ? LIMIT 0, 1', array($id1) ); If you do not use prepared statements, you MUST quote variables the values with quote(), otherwise you create a SQL injection vulnerability.

Parameters
string$queryThe sql select statement to be executed.
array$parametersThe parameters array.
Exceptions
DatabaseErrorException
Returns
array The values of the first column of a corresponding sql query.

◆ getLastInsertId()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::getLastInsertId ( )

Return string representing the row ID of the last row that was inserted into the database. Returns 0 for tables without autoincrement field.

Returns
string|int Row ID

◆ getOne()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::getOne (   $query,
  $parameters = [] 
)

Get the first value of the first row of the result set of a given sql SELECT or SHOW statement. Returns false for any other statement.

NOTE: Although you might pass any SELECT or SHOW statement to this method, try to limit the result of the statement to one single row, as the rest of the rows is simply discarded.

Parameters
string$queryThe sql SELECT or SHOW statement.
array$parametersArray of parameters for the given sql statement.
Returns
string|false Returns a string for SELECT or SHOW statements and FALSE for any other statement.

◆ getRow()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::getRow (   $query,
  $parameters = [] 
)

Get an array with the values of the first row of a given sql SELECT or SHOW statement . Returns an empty array for any other statement. The returned value depends on the fetch mode.

See also
DatabaseInterface::setFetchMode() for how to set the fetch mode

The keys of the array may be numeric, strings or both, depending on the FETCH_MODE_* of the connection. Set the desired fetch mode with DatabaseInterface::setFetchMode() before calling this method.

NOTE: Although you might pass any SELECT or SHOW statement to this method, try to limit the result of the statement to one single row, as the rest of the rows is simply discarded.

IMPORTANT: You are strongly encouraged to use prepared statements like this: $result = DatabaseProvider::getDb->getOne( 'SELECT ´id´ FROM ´mytable´ WHERE ´id´ = ? LIMIT 0, 1', array($id1) ); If you do not use prepared statements, you MUST quote variables the values with quote(), otherwise you create a SQL injection vulnerability.

Parameters
string$queryThe sql select statement to be executed.
array$parametersArray of parameters, for the given sql statement.
Returns
array The row, we selected with the given sql statement.

◆ isRollbackOnly()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::isRollbackOnly ( )

Return true, if the connection is marked rollbackOnly.

Returns
bool

◆ isTransactionActive()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::isTransactionActive ( )

Checks whether a transaction is currently active.

Returns
boolean TRUE if a transaction is currently active, FALSE otherwise.

◆ metaColumns()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::metaColumns (   $table)

Get the meta information about all the columns of the given table. This is kind of a poor man's schema manager, which only works for MySQL.

Parameters
string$tableThe name of the table.
Returns
array Array of objects with meta information of each column.

◆ quote()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::quote (   $value)

Quote a string or a numeric value in a way, that it might be used as a value in a sql statement. Returns false for values that cannot be quoted.

NOTE: It is not safe to use the return value of this function in a query. There will be no risk of SQL injection, but when the statement is executed and the value could not have been quoted, a DatabaseException is thrown. You are strongly encouraged to always use prepared statements instead of quoting the values on your own. E.g. use $resultSet = DatabaseProvider::getDb->select( 'SELECT * FROM ´mytable´ WHERE ´id´ = ? OR ´id´ = ?', array($id1, $id2) ); instead of $resultSet = DatabaseProvider::getDb->select( 'SELECT * FROM ´mytable´ WHERE ´id´ = ' . DatabaseProvider::getDb->quote($id1) . ' OR ´id´ = ' . DatabaseProvider::getDb->quote($id1) );

Parameters
mixed$valueThe string or numeric value to be quoted.
Returns
false|string The given string or numeric value converted to a string surrounded by single quotes or set to false, if the value could not have been quoted.

◆ quoteArray()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::quoteArray (   $array)

Quote every value in a given array in a way, that it might be used as a value in a sql statement and return the result as a new array. Numeric values will be converted to strings which quotes. The keys and their order of the returned array will be the same as of the input array.

NOTE: It is not safe to use the return value of this function in a query. There will be no risk of SQL injection, but when the statement is executed and the value could not have been quoted, a DatabaseException is thrown. You are strongly encouraged to always use prepared statements instead of quoting the values on your own.

Parameters
array$arrayThe strings to quote as an array.
Returns
array Array with all string and numeric values quoted with single quotes or set to false, if the value could not have been quoted.

◆ quoteIdentifier()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::quoteIdentifier (   $string)

Quote a string in a way, that it can be used as a identifier (i.e. table name or field name) in a sql statement. You are strongly encouraged to always use quote identifiers.

Parameters
string$stringThe string to be quoted.
Returns
string

◆ rollbackTransaction()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::rollbackTransaction ( )

RollBack a database transaction.

Exceptions
DatabaseErrorException

◆ select()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::select (   $query,
  $parameters = [] 
)

Return the results of a given sql SELECT or SHOW statement as a ResultSet. Throws an exception for any other statement.

The values of first row of the result may be via resultSet's fields property. This property is an array, which keys may be numeric, strings or both, depending on the FETCH_MODE_* of the connection. All further rows can be accessed via the specific methods of ResultSet.

IMPORTANT: You are strongly encouraged to use prepared statements like this: $resultSet = DatabaseProvider::getDb->select( 'SELECT * FROM ´mytable´ WHERE ´id´ = ? OR ´id´ = ?', array($id1, $id2) ); If you do not use prepared statements, you MUST quote variables the values with quote(), otherwise you create a SQL injection vulnerability.

Parameters
string$queryThe sql select statement to be executed.
array$parametersThe parameters array for the given query.
Exceptions
DatabaseErrorExceptionThe exception, that can occur while executing the sql statement.
Returns
\OxidEsales\Eshop\Core\Database\Adapter\ResultSetInterface The result of the given query.

◆ selectLimit()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::selectLimit (   $query,
  $rowCount = -1,
  $offset = 0,
  $parameters = [] 
)

Return the results of a given sql SELECT or SHOW statement limited by a LIMIT clause as a ResultSet. Throws an exception for any other statement.

The values of first row of the result may be via resultSet's fields property. This property is an array, which keys may be numeric, strings or both, depending on the FETCH_MODE_* of the connection. All further rows can be accessed via the specific methods of ResultSet.

IMPORTANT: You are strongly encouraged to use prepared statements like this: $resultSet = DatabaseProvider::getDb->selectLimit( 'SELECT * FROM ´mytable´ WHERE ´id´ = ? OR ´id´ = ?', $rowCount, $offset, array($id1, $id2) ); If you do not use prepared statements, you MUST quote variables the values with quote(), otherwise you create a SQL injection vulnerability.

Parameters
string$queryThe sql select statement to be executed.
int$rowCountMaximum number of rows to return
int$offsetOffset of the first row to return
array$parametersThe parameters array.
Exceptions
DatabaseErrorExceptionThe exception, that can occur while executing the sql statement.
Returns
ResultSetInterface The result of the given query.

◆ setConnectionParameters()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::setConnectionParameters ( array  $connectionParameters)

Set the necessary connection parameters to connect to the database. The parameter array must at least contain the key 'default'. E.g. [ 'default' => [ 'databaseDriver' => '', // string At the moment only 'pdo_mysql' is supported 'databaseHost' => '', // string 'databasePort' => '', // integer Optional, defaults to port 3306 'databaseName' => '', // string 'databaseUser' => '', // string 'databasePassword' => '', // string 'connectionCharset' => '', // string Optional, defaults to the servers connection character set ] ]

Parameters
array$connectionParameters

◆ setFetchMode()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::setFetchMode (   $fetchMode)

Set the fetch mode of an open database connection.

After the connection has been opened, this method may be used to set the fetch mode to any of the valid fetch modes as defined in DatabaseInterface::FETCH_MODE_*

NOTE: This implies, that it is not safe to make any assumptions about the current fetch mode of the connection.

Parameters
int$fetchModeSee DatabaseInterface::FETCH_MODE_* for valid values

◆ setTransactionIsolationLevel()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::setTransactionIsolationLevel (   $level)

Note: This method is MySQL specific, as we use the MySQL syntax for setting the transaction isolation level.

See also
Doctrine::transactionIsolationLevelMap
Returns
bool|integerSet the transaction isolation level. Allowed values 'READ UNCOMMITTED', 'READ COMMITTED', 'REPEATABLE READ' and 'SERIALIZABLE'.

NOTE: Currently the transaction isolation level is set on the database session and not globally. Setting the transaction isolation level globally requires root privileges in MySQL an this application should not be executed with root privileges. If you need to set the transaction isolation level globally, ask your database administrator to do so,

Parameters
string$levelThe transaction isolation level
Exceptions

◆ startTransaction()

OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::startTransaction ( )

Start a database transaction.

Exceptions
DatabaseErrorException

Member Data Documentation

◆ DUPLICATE_KEY_ERROR_CODE

const OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::DUPLICATE_KEY_ERROR_CODE = 1062

◆ FETCH_MODE_ASSOC

const OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::FETCH_MODE_ASSOC = 2

Fetch the query result into an array with string keys

◆ FETCH_MODE_BOTH

const OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::FETCH_MODE_BOTH = 3

Fetch the query result into a mixed array with both integer and string keys

◆ FETCH_MODE_DEFAULT

const OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::FETCH_MODE_DEFAULT = 0

The default fetch mode as implemented by the database driver, in Doctrine this is usually FETCH_MODE_BOTH

Deprecated:
since 6.0 (2016-04-19); This constant is confusing as the shop uses a different default fetch mode.

◆ FETCH_MODE_NUM

const OxidEsales\EshopCommunity\Core\Database\Adapter\DatabaseInterface::FETCH_MODE_NUM = 1

Fetch the query result into an array with integer keys. This is the default fetch mode as it is set by OXID eShop on opening a database connection.


The documentation for this interface was generated from the following file: