From 926b6fa30ee269962acaf29d40328078a175a390 Mon Sep 17 00:00:00 2001 From: xue <> Date: Thu, 6 Mar 2008 15:25:32 +0000 Subject: Fixed #799. --- framework/Data/TDbCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/Data/TDbCommand.php') diff --git a/framework/Data/TDbCommand.php b/framework/Data/TDbCommand.php index 90e86844..b7985d3f 100644 --- a/framework/Data/TDbCommand.php +++ b/framework/Data/TDbCommand.php @@ -137,7 +137,7 @@ class TDbCommand extends TComponent * @param mixed Name of the PHP variable to bind to the SQL statement parameter * @param int SQL data type of the parameter * @param int length of the data type - * @see http://www.php.net/manual/en/function.pdostatement-bindparam.php + * @see http://www.php.net/manual/en/function.PDOStatement-bindParam.php */ public function bindParameter($name, &$value, $dataType=null, $length=null) { @@ -158,7 +158,7 @@ class TDbCommand extends TComponent * placeholders, this will be the 1-indexed position of the parameter. * @param mixed The value to bind to the parameter * @param int SQL data type of the parameter - * @see http://www.php.net/manual/en/function.pdostatement-bindvalue.php + * @see http://www.php.net/manual/en/function.PDOStatement-bindValue.php */ public function bindValue($name, $value, $dataType=null) { -- cgit v1.2.3