summaryrefslogtreecommitdiff
path: root/framework/Data/SqlMap/Statements
diff options
context:
space:
mode:
authorwei <>2007-05-09 04:31:09 +0000
committerwei <>2007-05-09 04:31:09 +0000
commit559f04e22869e3b54ffc25b22a74aa297bf65c41 (patch)
tree08f1d49af1b401965bb8c5a2f24f0203309ec265 /framework/Data/SqlMap/Statements
parentc3c0dc28d3e9964bddbe66dac34080cf9e1dd05c (diff)
Fixed #547
Diffstat (limited to 'framework/Data/SqlMap/Statements')
-rw-r--r--framework/Data/SqlMap/Statements/TPreparedCommand.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/framework/Data/SqlMap/Statements/TPreparedCommand.php b/framework/Data/SqlMap/Statements/TPreparedCommand.php
index ff5fd6ff..c50ff3e9 100644
--- a/framework/Data/SqlMap/Statements/TPreparedCommand.php
+++ b/framework/Data/SqlMap/Statements/TPreparedCommand.php
@@ -46,7 +46,10 @@ class TPreparedCommand
{
$property = $statement->parameterMap()->getProperty($i);
$value = $statement->parameterMap()->getPropertyValue($registry,$property, $parameterObject);
- $command->bindValue($i+1,$value);
+ if(!empty($property->getDbType()))
+ $command->bindValue($i+1,$value, constant($property->getDbType())); //assumes PDO types, e.g. PDO::PARAM_INT
+ else
+ $command->bindValue($i+1,$value, TDbCommandBuilder::getPdoType($value));
}
}
}