What is the difference between:
$db = new SQLiteDatabase('name.db');
and
$db = new PDO('sqlite:name.db');
Since, I don't understand the big picture here, details are premature for me and the information available online appears to assume certain knowledge I seem to be lacking. Please don't just paste in links to the PHP manual. Less specific, more general concepts will be useful for me.
Also, do both of these approaches use SQLite 3, as opposed to SQLite 2?