Class TDbConnection

Description

TDbConnection class

TDbConnection represents a connection to a database.

TDbConnection works together with TDbCommand, TDbDataReader and TDbTransaction to provide data access to various DBMS in a common set of APIs. They are a thin wrapper of the PDO PHP extension.

To establish a connection, set Active to true after specifying ConnectionString, Username and Password.

Since 3.1.2, the connection charset can be set (for MySQL and PostgreSQL databases only) using the Charset property. The value of this property is database dependant. e.g. for mysql, you can use 'latin1' for cp1252 West European, 'utf8' for unicode, ...

The following example shows how to create a TDbConnection instance and establish the actual connection:

  1. $connection=new TDbConnection($dsn,$username,$password);
  2. $connection->Active=true;

After the DB connection is established, one can execute an SQL statement like the following:

  1. $command=$connection->createCommand($sqlStatement);
  2. $command->execute(); // a non-query SQL statement execution
  3. // or execute an SQL query and fetch the result set
  4. $reader=$command->query();
  5.  
  6. // each $row is an array representing a row of data
  7. foreach($reader as $row) ...

One can do prepared SQL execution and bind parameters to the prepared SQL:

  1. $command=$connection->createCommand($sqlStatement);
  2. $command->bindParameter($name1,$value1);
  3. $command->bindParameter($name2,$value2);
  4. $command->execute();

To use transaction, do like the following:

  1. $transaction=$connection->beginTransaction();
  2. try
  3. {
  4. $connection->createCommand($sql1)->execute();
  5. $connection->createCommand($sql2)->execute();
  6. //.... other SQL executions
  7. $transaction->commit();
  8. }
  9. catch(Exception $e)
  10. {
  11. $transaction->rollBack();
  12. }

TDbConnection provides a set of methods to support setting and querying of certain DBMS attributes, such as NullConversion.

  • since: 3.0
  • version: $Id: TDbConnection.php 2435 2008-04-18 13:12:19Z tof $
  • author: Qiang Xue <qiang.xue@gmail.com>

Located in /Data/TDbConnection.php (line 84)

TComponent
   |
   --TDbConnection
Method Summary
TDbConnection __construct ([string $dsn = ''], [string $username = ''], [string $password = ''], [string $charset = ''])
void close ()
TDbCommand createCommand (string $sql)
boolean getActive ()
mixed getAttribute (int $name)
boolean getAutoCommit ()
string getCharset ()
string getClientVersion ()
string getDriverName ()
string getLastInsertID ([string $sequenceName = ''])
string getPassword ()
boolean getPersistent ()
boolean getPrefetch ()
string getServerInfo ()
string getServerVersion ()
int getTimeout ()
string getUsername ()
void open ()
string quoteString (string $str)
void setActive (boolean $value)
void setAttribute (int $name, mixed $value)
void setAutoCommit (boolean $value)
void setCharset (string $value)
void setConnectionString (string $value)
void setPassword (string $value)
void setPersistent (boolean $value)
void setUsername (string $value)
void __sleep ()
Methods
Constructor __construct (line 108)

Constructor.

Note, the DB connection is not established when this connection instance is created. Set Active property to true to establish the connection. Since 3.1.2, you can set the charset for MySql connection

TDbConnection __construct ([string $dsn = ''], [string $username = ''], [string $password = ''], [string $charset = ''])
  • string $dsn: The Data Source Name, or DSN, contains the information required to connect to the database.
  • string $username: The user name for the DSN string.
  • string $password: The password for the DSN string.
  • string $charset: Charset used for DB Connection (MySql & pgsql only). If not set, will use the default charset of your database server
beginTransaction (line 319)

Starts a transaction.

  • return: the transaction initiated
  • access: public
  • throws: TDbException if the connection is not active
TDbTransaction beginTransaction ()
close (line 186)

Closes the currently active DB connection.

It does nothing if the connection is already closed.

  • access: protected
void close ()
createCommand (line 293)

Creates a command for execution.

  • return: the DB command
  • access: public
  • throws: TDbException if the connection is not active
TDbCommand createCommand (string $sql)
  • string $sql: SQL statement associated with the new command.
getActive (line 137)
  • return: whether the DB connection is established
  • access: public
boolean getActive ()
getAttribute (line 529)

Obtains a specific DB connection attribute information.

mixed getAttribute (int $name)
  • int $name: the attribute to be queried
getAutoCommit (line 434)
  • return: whether creating or updating a DB record will be automatically committed. Some DBMS (such as sqlite) may not support this feature.
  • access: public
boolean getAutoCommit ()
getAvailableDrivers (line 129)
array getAvailableDrivers ()
getCharset (line 265)
  • return: the charset used for database connection. Defaults to emtpy string.
  • access: public
string getCharset ()
getClientVersion (line 477)
  • return: the version information of the DB driver
  • access: public
string getClientVersion ()
getColumnCase (line 361)
  • return: the case of the column names
  • access: public
TDbColumnCaseMode getColumnCase ()
getConnectionStatus (line 486)
  • return: the status of the connection Some DBMS (such as sqlite) may not support this feature.
  • access: public
string getConnectionStatus ()
getConnectionString (line 216)
  • return: The Data Source Name, or DSN, contains the information required to connect to the database.
  • access: public
string getConnectionString ()
getCurrentTransaction (line 304)
  • return: the currently active transaction. Null if no active transaction.
  • access: public
TDbTransaction getCurrentTransaction ()
getDriverName (line 469)
  • return: name of the DB driver
  • access: public
string getDriverName ()
getLastInsertID (line 336)

Returns the ID of the last inserted row or sequence value.

string getLastInsertID ([string $sequenceName = ''])
  • string $sequenceName: name of the sequence object (required by some DBMS)
getNullConversion (line 397)
  • return: how the null and empty strings are converted
  • access: public
TDbNullConversionMode getNullConversion ()
getPassword (line 249)
  • return: the password for establishing DB connection. Defaults to empty string.
  • access: public
string getPassword ()
getPdoInstance (line 282)
  • return: the PDO instance, null if the connection is not established yet
  • access: public
PDO getPdoInstance ()
getPersistent (line 452)
  • return: whether the connection is persistent or not Some DBMS (such as sqlite) may not support this feature.
  • access: public
boolean getPersistent ()
getPrefetch (line 494)
  • return: whether the connection performs data prefetching
  • access: public
boolean getPrefetch ()
getServerInfo (line 502)
  • return: the information of DBMS server
  • access: public
string getServerInfo ()
getServerVersion (line 510)
  • return: the version information of DBMS server
  • access: public
string getServerVersion ()
getTimeout (line 518)
  • return: timeout settings for the connection
  • access: public
int getTimeout ()
getUsername (line 233)
  • return: the username for establishing DB connection. Defaults to empty string.
  • access: public
string getUsername ()
open (line 163)

Opens DB connection if it is currently not

  • access: protected
  • throws: TDbException if connection fails
void open ()
quoteString (line 350)

Quotes a string for use in a query.

string quoteString (string $str)
  • string $str: string to be quoted
setActive (line 147)

Open or close the DB connection.

  • access: public
  • throws: TDbException if connection fails
void setActive (boolean $value)
  • boolean $value: whether to open or close DB connection
setAttribute (line 543)

Sets an attribute on the database connection.

void setAttribute (int $name, mixed $value)
  • int $name: the attribute to be set
  • mixed $value: the attribute value
setAutoCommit (line 443)
  • access: public
void setAutoCommit (boolean $value)
  • boolean $value: whether creating or updating a DB record will be automatically committed. Some DBMS (such as sqlite) may not support this feature.
setCharset (line 273)
  • access: public
void setCharset (string $value)
  • string $value: the charset used for database connection
setColumnCase (line 377)
  • access: public
void setColumnCase (TDbColumnCaseMode $value)
setConnectionCharset (line 197)
  • access: protected
void setConnectionCharset ()
setConnectionString (line 225)
void setConnectionString (string $value)
  • string $value: The Data Source Name, or DSN, contains the information required to connect to the database.
setNullConversion (line 413)
  • access: public
void setNullConversion (TDbNullConversionMode $value)
setPassword (line 257)
  • access: public
void setPassword (string $value)
  • string $value: the password for establishing DB connection
setPersistent (line 461)
  • access: public
void setPersistent (boolean $value)
  • boolean $value: whether the connection is persistent or not Some DBMS (such as sqlite) may not support this feature.
setUsername (line 241)
  • access: public
void setUsername (string $value)
  • string $value: the username for establishing DB connection
__sleep (line 119)

Close the connection when serializing.

  • access: public
void __sleep ()

Inherited Methods

Inherited From TComponent

TComponent::addParsedObject()
TComponent::attachEventHandler()
TComponent::canGetProperty()
TComponent::canSetProperty()
TComponent::createdOnTemplate()
TComponent::detachEventHandler()
TComponent::evaluateExpression()
TComponent::evaluateStatements()
TComponent::getEventHandlers()
TComponent::getSubProperty()
TComponent::hasEvent()
TComponent::hasEventHandler()
TComponent::hasProperty()
TComponent::raiseEvent()
TComponent::setSubProperty()
TComponent::__get()
TComponent::__set()

Documentation generated on Mon, 21 Apr 2008 11:34:52 -0400 by phpDocumentor 1.3.0RC4