如何在PDO中获取默认提取模式?

时间:2015-04-12 06:33:48

标签: php pdo

如何在PDO中获取默认提取模式?
我认为该方法是getAttribute,但manual

中没有ATTR_DEFAULT_FETCH_MODE选项

如果你想知道我想做什么,这就是代码


    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的默认值是默认的提取模式属性(可能之前已设置)

0 个答案:

没有答案