How to prevent SQLITE SQLSTATE[HY000] [14]?

前端 未结 3 1305
孤城傲影
孤城傲影 2020-12-11 10:03

I receive sometimes the following error:

SQLSTATE[HY000] [14] unable to open database file

I open the datebase by using

<
相关标签:
3条回答
  • 2020-12-11 10:11

    Very strange, but for me this was caused by not wrapping the new PDO statement in a try/catch block.

    0 讨论(0)
  • 2020-12-11 10:13

    This is an error from SQLlite :

    #define SQLITE_CANTOPEN 14 /* Unable to open the database file */

    It seems like you have opened to many connections, I suggest you to reuse the connection if it is open.

    Create a property:

    private $pdo;
    

    And check if it's null before creating a new object:

    function opendatabase(){
        try{
            if($this->pdo==null){
              $this->pdo =new PDO("sqlite:database/database.db","","",array(
                    PDO::ATTR_PERSISTENT => true
                ));
            }
            return $this->pdo;
        }catch(PDOException $e){
            logerror($e->getMessage(), "opendatabase");
            print "Error in openhrsedb ".$e->getMessage();
        }
    }
    
    0 讨论(0)
  • 2020-12-11 10:29

    If anyone is having the same message while reusing the PDO connection and still having problems, it might be because you're storing images you get from fopen() and forgot the fclose() statement. In this particular case, the error message is really misleading. Here's a question for the same error message that I managed to solve after a few days of troubleshooting. SQLSTATE[HY000] [14] : can't open database because too many connections are already opened

    0 讨论(0)
提交回复
热议问题