Re: [PHP-DB] Basic SQLite test failing..

2005-10-31 Thread Micah Stevens
I'm not terrbily familiar with the SQLite stuff, but a quick look in the docs claim a couple things that may help you here: 1) Error messages for sqlite_open are passed by reference. You should use this format: $db = sqlite_open('mysqlitedb', 0666, $sqliteerror) And then look at the value of

Re: [PHP-DB] Basic SQLite test failing..

2005-10-30 Thread Micah Stevens
Take out the @ symbols so you can get some errors? On Sunday 30 October 2005 3:03 am, Eoin Hennessy wrote: > Hello, I have the following very basic sqlite test harness: > >$dbconn = @sqlite_open('testdb'); > > if ($dbconn) { > @sqlite_query($dbconn, "CREATE TABLE test_table (test_id I