summaryrefslogtreecommitdiff
path: root/framework/Data/TDbCommand.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/TDbCommand.php
parenta33eb784466c3879e40d7bc35be5a37f62552d11 (diff)
Fixed #799.
Diffstat (limited to 'framework/Data/TDbCommand.php')
-rw-r--r--framework/Data/TDbCommand.php4
1 files changed, 2 insertions, 2 deletions
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)
{