search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

How to run the project sample

Related article: Angular 4 Restaurant Table Reservation (PHP/MySQL)
Asked by Tom
6 years ago.

i have try to run the project sample but it does not work .
It got and error at _db.php line 5
$db = new PDO('sqlite:daypilot.sqlite');

Answer posted by Dan Letecky [DayPilot]
6 years ago.

It looks like you'll need to enable SQLite PDO driver in php.ini config file (it's not enabled by default):

Windows:
[PHP]
; ...
extension=php_pdo_sqlite.dll
; ...
Linux:
[PHP]
; ...
extension=php_pdo_sqlite.so
; ...
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.