我正在研究的项目是使用mysql而不是mysqli。 “查询执行位置”的数据库类代码
if($this->whereCondition != "") {
$this->sql .= " WHERE $this->whereCondition";
}
if($this->headers != "") {
$this->sql .= " $this->headers";
}
$ this-> whereCondition 包含where语句的所有条件。我可以将mysql转义字符串用于整个变量,还是应该转义单个条件值?