我的名字中有一个带连字符的表,我无法更改表名,所以我认为反引号会有所帮助。
不幸的是,它失败了,一些谷歌搜索没有给我任何答案。我该如何解决这个问题?
例如:
$stmt = $this->_dbh->prepare(
'UPDATE `:table`
SET status = NOT status
WHERE id=:id;');
$stmt->bindParam(':table',$this->_settings['table'], PDO::PARAM_STR);
$stmt->bindParam(':id',$data['id'], PDO::PARAM_INT);
if( $stmt->execute() ){
return 'Success';
}
else{
$this->_log( $stmt->errorInfo() );
return 'Action failed.';
}
在日志中,使用反引号:
13:25:18 42S02
1146
Table 'db_name.'table-name'' doesn't exist
没有反引号:
13:38:14 42000
1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''table-name'
SET status = NOT status
WHERE id='1'' at line 1
答案 0 :(得分:4)
如果需要注入表名,则不能将其作为绑定变量;只要该值已列入白名单,您就可以使用
$stmt = $this->_dbh->prepare(
sprint(
'UPDATE `%s`
SET status = NOT status
WHERE id=:id;',
$this->_settings['table']
)
);
$stmt->bindParam(':id',$data['id'], PDO::PARAM_INT);