如何在PDO中获取默认提取模式?
我认为该方法是getAttribute,但manual
如果你想知道我想做什么,这就是代码
public function query(SQLStatement $sql, $fetch_style = **DEFAULT_FETCH_MODE**) {
try {
$s = $this->connection->query((string)$sql, $fetch_style);
}
catch(PDOException $e) {
throw new DatabaseException($e->getMessage(), $e->getCode(), $e);
}
return $s;
}
我想让$ fetch_style的默认值是默认的提取模式属性(可能之前已设置)