我有这段代码,但无法执行
它说Call to undefined method Dbh::query()
可以做些什么来解决这个问题在php中的一个菜鸟刚开始可以请一些人帮忙
我也在使用mysqli
public function setSingleSelect($whatColumn,$tableName, $whereColumn,$queryCondition,$setColumn)
{
$this->whatColumn = $whatColumn;
$this->tableName = $tableName;
$this->whereColumn = $whereColumn;
$this->queryCondition = $queryCondition;
$this->setColumn = $setColumn;
}
public function singleSelect (){
$sql ="SELECT {$this->whatColumn} FROM {$this->tableName}";
$result = $conn->query($sql);
return $result;
}