Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sqlite correct path/URI for php pdo on windows

[ante-scriptum : this is a self answered question, you don't need to bother answering]

I ran into a weird configuration problem, not documented anywhere on the specific PHP.net page or at StackOverflow.

The problem

When opening an existing sqlite database on Windows, the same error kept showing :

SQLSTATE[HY000] [14] Unable To Open Database File

Although the code executed was copy/pasted from the manual :

<?php
/* Connect to an ODBC database using driver invocation */
$dsn = 'sqlite:/full/path/to/db';
$user = 'dbuser';
$password = 'dbpass';

try {
    $dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
    echo 'Connection failed: ' . $e->getMessage();
}

?>

I could not open this database, as I had tried all kinds of various DSN while googling :

$dsn = 'sqlite:/c:\\full\\path\\to\\db'; // --FAILED--

$dsn = 'sqlite://c:/full/path/to/db'; // --FAILED--

like image 565
Justin T. Avatar asked Dec 29 '11 16:12

Justin T.


2 Answers

The solution

Notice the simple slash in the DSN sqlite:/ ? Just drop it !

write your DSN like this :

sqlite:name.db.

This works with relative and absolute paths so :

$dsn = 'sqlite:c:\full\path\to\name.db'; // --WORKS--

$dsn = 'sqlite:..\data\name.db'; // --WORKS--

$dsn = 'sqlite:name.db'; // --WORKS--

Hope it will save you some time in the future !

like image 170
Justin T. Avatar answered Sep 30 '22 16:09

Justin T.


Just a small append to @justin answer:

You can also use the linux path style on windows:

$dsn = 'sqlite:c:/full/path/to/name.db';
like image 38
Pedro Lobito Avatar answered Sep 30 '22 16:09

Pedro Lobito