PHP Class PHPUnit_Extensions_Database_DB_DefaultDatabaseConnection, qcodo

Author: Mike Lively ([email protected])
Inheritance: implements PHPUnit_Extensions_Database_DB_IDatabaseConnection
Afficher le fichier Open project: qcodo/qcodo Class Usage Examples

Protected Properties

Свойство Type Description
$connection PDO
$metaData PHPUnit_Extensions_Database_DB_IMetaData The metadata object used to retrieve table meta data from the database.

Méthodes publiques

Méthode Description
__construct ( PDO $connection, string $schema = '' ) Creates a new database connection
allowsCascading ( ) : boolean Returns true if the connection allows cascading
close ( ) Close this connection.
createDataSet ( array $tableNames = NULL ) : PHPUnit_Extensions_Database_DataSet_IDataSet Creates a dataset containing the specified table names. If no table names are specified then it will created a dataset over the entire database.
createQueryTable ( string $resultName, string $sql ) : PHPUnit_Extensions_Database_DB_Table Creates a table with the result of the specified SQL statement.
getConfig ( ) : PHPUnit_Extensions_Database_Database_DatabaseConfig Returns this connection database configuration
getConnection ( ) : PDO Returns a PDO Connection
getMetaData ( ) : PHPUnit_Extensions_Database_DB_IMetaData Returns a database metadata object that can be used to retrieve table meta data from the database.
getRowCount ( string $tableName, string $whereClause = NULL ) Returns the number of rows in the given table. You can specify an optional where clause to return a subset of the table.
getSchema ( ) : string Returns the schema for the connection.
getTruncateCommand ( ) : string Returns the command used to truncate a table.
quoteSchemaObject ( string $object ) : string Returns a quoted schema object. (table name, column name, etc)

Method Details

__construct() public méthode

Creates a new database connection
public __construct ( PDO $connection, string $schema = '' )
$connection PDO
$schema string - The name of the database schema you will be testing against.

allowsCascading() public méthode

Returns true if the connection allows cascading
public allowsCascading ( ) : boolean
Résultat boolean

close() public méthode

Close this connection.
public close ( )

createDataSet() public méthode

Creates a dataset containing the specified table names. If no table names are specified then it will created a dataset over the entire database.
public createDataSet ( array $tableNames = NULL ) : PHPUnit_Extensions_Database_DataSet_IDataSet
$tableNames array
Résultat PHPUnit_Extensions_Database_DataSet_IDataSet

createQueryTable() public méthode

Creates a table with the result of the specified SQL statement.
public createQueryTable ( string $resultName, string $sql ) : PHPUnit_Extensions_Database_DB_Table
$resultName string
$sql string
Résultat PHPUnit_Extensions_Database_DB_Table

getConfig() public méthode

Returns this connection database configuration
public getConfig ( ) : PHPUnit_Extensions_Database_Database_DatabaseConfig
Résultat PHPUnit_Extensions_Database_Database_DatabaseConfig

getConnection() public méthode

Returns a PDO Connection
public getConnection ( ) : PDO
Résultat PDO

getMetaData() public méthode

Returns a database metadata object that can be used to retrieve table meta data from the database.
public getMetaData ( ) : PHPUnit_Extensions_Database_DB_IMetaData
Résultat PHPUnit_Extensions_Database_DB_IMetaData

getRowCount() public méthode

Returns the number of rows in the given table. You can specify an optional where clause to return a subset of the table.
public getRowCount ( string $tableName, string $whereClause = NULL )
$tableName string
$whereClause string

getSchema() public méthode

Returns the schema for the connection.
public getSchema ( ) : string
Résultat string

getTruncateCommand() public méthode

Returns the command used to truncate a table.
public getTruncateCommand ( ) : string
Résultat string

quoteSchemaObject() public méthode

Returns a quoted schema object. (table name, column name, etc)
public quoteSchemaObject ( string $object ) : string
$object string
Résultat string

Property Details

$connection protected_oe property

protected PDO $connection
Résultat PDO

$metaData protected_oe property

The metadata object used to retrieve table meta data from the database.
protected PHPUnit_Extensions_Database_DB_IMetaData $metaData
Résultat PHPUnit_Extensions_Database_DB_IMetaData