我使用sqlite在php中开发一个webapp来将数据存储在数据库中。在互联网上看到我使用PDO而不是SQLITE3类。我做了互联网上显示的所有步骤以避免此错误消息,但它仍然是:
SQLSTATE [HY000] [14]无法打开数据库文件
定期任务每30秒运行一次,以获取表中的条目数。此任务由Javascript / Jquery触发。在普通的php文件上我使用PDO没有任何问题。但是将它与Javascript / Jquery结合使用我会收到上面的消息。
我已经将整个路径和数据库设置为web服务器的用户/组以及chmod 0777.
我自己编写的数据库类被创建并存储在Session变量中,以避免在网页生命周期中的创建和破坏。
此函数连接到数据库(此函数和下一个函数位于同一个类中):
private $db = null;
private function connectdb(){
try {
$this->db = new PDO(database,"","",array(
PDO::ATTR_PERSISTENT => TRUE,
PDO::ERRMODE_EXCEPTION => TRUE));
} catch (PDOException $e) {
logerror($e->getMessage(), "connecthrsedb");
return exception;
}
}
此函数正在执行查询:
function getNumberofEntriesinTable() {
try {
if (is_null($this->db)) {
if ($this->connectdb() < 0) {
return -1;
}
}
$statement = "select count(*) from table;";
$res = $this->db->query($statement);
$res = $res->fetch();
$res = $res['count(*)'];
$this->db = null;
return $res;
} catch (PDOException $e) {
syslog(LOG_ERROR,$e->getMessage());
return -1;
}
}
会话变量$_SESSION['database']
在启动时生成。
这个javascript / jquery函数应该做的事情:
function getData(){
$.post("php/getdatafromdb.php",{action: 'getdata'},function(data){
console.log(data);
}
setTimeout(function () {getData();},30000);
}
javascript / jquery函数运行良好,并使用setTimeoutfunction执行。 但是,我不知道如何防止或删除此问题。我该如何解决这个问题?
我的PHP ini文件包含以下有关sqlite和pdo的条目:
[sqlite]
; http://php.net/sqlite.assoc-case
;sqlite.assoc_case = 0
[sqlite3]
;sqlite3.extension_dir =
[Pdo]
; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
; http://php.net/pdo-odbc.connection-pooling
;pdo_odbc.connection_pooling=strict
;pdo_odbc.db2_instance_name
[Pdo_mysql]
; If mysqlnd is used: Number of cache slots for the internal result set cache
; http://php.net/pdo_mysql.cache_size
pdo_mysql.cache_size=2000
; Default socket name for local MySQL connects. If empty, uses the built-in
; MySQL defaults.
; http://php.net/pdo_mysql.default-socket
pdo_mysql.default_socket=
是否需要sqlite pdo设置?
答案 0 :(得分:2)
我解决了这个问题。不幸的是,错误消息令人困惑,因为PHP没有找到该文件。 使用始终绝对路径,即使权限,用户和组设置正确,也要避免此错误。