summaryrefslogtreecommitdiff
path: root/framework/Data/TDbConnection.php
diff options
context:
space:
mode:
authorxue <>2008-03-06 15:25:32 +0000
committerxue <>2008-03-06 15:25:32 +0000
commit926b6fa30ee269962acaf29d40328078a175a390 (patch)
treef46ed8faa0d1a9b8f804dd69e8116516a4ca5fbc /framework/Data/TDbConnection.php
parenta33eb784466c3879e40d7bc35be5a37f62552d11 (diff)
Fixed #799.
Diffstat (limited to 'framework/Data/TDbConnection.php')
-rw-r--r--framework/Data/TDbConnection.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/Data/TDbConnection.php b/framework/Data/TDbConnection.php
index 55d2710c..23a6e58b 100644
--- a/framework/Data/TDbConnection.php
+++ b/framework/Data/TDbConnection.php
@@ -94,7 +94,7 @@ class TDbConnection extends TComponent
* @param string The Data Source Name, or DSN, contains the information required to connect to the database.
* @param string The user name for the DSN string.
* @param string The password for the DSN string.
- * @see http://www.php.net/manual/en/function.pdo-construct.php
+ * @see http://www.php.net/manual/en/function.PDO-construct.php
*/
public function __construct($dsn='',$username='',$password='')
{
@@ -114,7 +114,7 @@ class TDbConnection extends TComponent
/**
* @return array list of available PDO drivers
- * @see http://www.php.net/manual/en/function.pdo-getavailabledrivers.php
+ * @see http://www.php.net/manual/en/function.PDO-getAvailableDrivers.php
*/
public static function getAvailableDrivers()
{
@@ -188,7 +188,7 @@ class TDbConnection extends TComponent
/**
* @param string The Data Source Name, or DSN, contains the information required to connect to the database.
- * @see http://www.php.net/manual/en/function.pdo-construct.php
+ * @see http://www.php.net/manual/en/function.PDO-construct.php
*/
public function setConnectionString($value)
{
@@ -269,7 +269,7 @@ class TDbConnection extends TComponent
* Returns the ID of the last inserted row or sequence value.
* @param string name of the sequence object (required by some DBMS)
* @return string the row ID of the last row inserted, or the last value retrieved from the sequence object
- * @see http://www.php.net/manual/en/function.pdo-lastinsertid.php
+ * @see http://www.php.net/manual/en/function.PDO-lastInsertId.php
*/
public function getLastInsertID($sequenceName='')
{
@@ -283,7 +283,7 @@ class TDbConnection extends TComponent
* Quotes a string for use in a query.
* @param string string to be quoted
* @return string the properly quoted string
- * @see http://www.php.net/manual/en/function.pdo-quote.php
+ * @see http://www.php.net/manual/en/function.PDO-quote.php
*/
public function quoteString($str)
{
@@ -462,7 +462,7 @@ class TDbConnection extends TComponent
* Obtains a specific DB connection attribute information.
* @param int the attribute to be queried
* @return mixed the corresponding attribute information
- * @see http://www.php.net/manual/en/function.pdo-getattribute.php
+ * @see http://www.php.net/manual/en/function.PDO-getAttribute.php
*/
public function getAttribute($name)
{
@@ -476,7 +476,7 @@ class TDbConnection extends TComponent
* Sets an attribute on the database connection.
* @param int the attribute to be set
* @param mixed the attribute value
- * @see http://www.php.net/manual/en/function.pdo-setattribute.php
+ * @see http://www.php.net/manual/en/function.PDO-setAttribute.php
*/
public function setAttribute($name,$value)
{