latest php has two methods of accessing sqlite database eigter by:
http://php.net/manual/en/book.sqlite3.php - interface specific to this database
or
http://php.net/manual/en/book.pdo.php
Commands in both situations are very similar ,but I do not know which of these method is faster.
I guess that PDO method is slower because of layer of abstraction that need to be implemented there... am I right ?