如果在准备好的PDO查询中将整数绑定为字符串,性能是否存在差异?在Mysql中,如果值绑定为int或字符串,则查询可以正常工作,但是在执行此操作时性能是否有任何差异?
$pdo = new PDO(
"mysql:host={$host};port={$port};dbname={$dbname};charset=utf8",
$username,
$password
);
$statement = $pdo->prepare("SELECT * FROM `table` WHERE `id` = :param");
// Is there any performance difference between the two rows below
$statement->bindValue(":param", 5);
$statement->bindValue(":param", 5, PDO::PARAM_INT);
$statement->execute();
绑定参数和指定其类型之间是否有任何区别,或者只是将其引用为字符串?
答案 0 :(得分:6)
如果你想完全采用你指定类型的方法比你没有指定类型的方法稍快,默认类型是PDO::PARAM_STR
。
如果你运行它100万次,平均值如下:
$stmt->bindValue(":param", 5, PDO::PARAM_INT);
)$stmt->bindValue(":param", 5);
)$stmt->bindValue(":param", 5, PDO::PARAM_STR);
)使用PHP 5.6.3版进行测试; 32位Windows;
答案 1 :(得分:0)
根据我的经验,没有这样的表现不同。 MySQL会自动将字符串转换为数字(取决于列类型)。
如果我想要精确,PDO :: PARAM_STR比PDO :: PARAM_INT慢。 默认情况下,PDO :: PARAM_STR。
这是因为服务器必须检查您的数据。