如何使用aura sql进行数据库连接?

时间:2014-01-09 12:06:10

标签: php mysql

我正在使用mysql。我想使用aura sql连接数据库。

<?php
$connection_factory = include '/Aura/scripts/instance.php';
$connection = $connection_factory->newInstance(

    // adapter name
    'mysql',

    // DSN elements for PDO; this can also be
    // an array of key-value pairs
    'host=localhost;dbname=db_aura',

    // username for the connection
    'root',

    // password for the connection
    ''
);

$result = $connection->fetchAll('SELECT * FROM tbl_test');
?>

以上代码显示错误

解析错误:第65行的C:\ wamp \ www \ 1 \ Aura \ src \ Aura \ Sql \ Connection \ AbstractConnection.php中的解析错误

1 个答案:

答案 0 :(得分:0)

最后我明白了......

我的问题上面给出的代码是正确的。由于我使用的php版本发生错误。 5.4以上的PHP版本仅支持此功能。现在我正在使用php 5.4.12和aura sql能够与mysql连接并且运行良好..谢谢。