On 21 Oct 2011, at 12:05am, Prashant Prabhudesai wrote:

> $db = new SQLiteDatabase('db/reg.s3db');

This is the old-style SQLite2 interface.

I strongly suggest you switch to the new SQLite3 interface as documented here:

http://www.php.net/manual/en/book.sqlite3.php

In that your line would be

$db = new SQLite3('db/reg.s3db');

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to