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

2005-10-30 Thread Eoin Hennessy
Ahh, I'm not very familiar with php, should have looked into the effects of the '@' symbol. Once removing the symbols, running via CLI, it fails with; 'Call to undefined function: sqlite_open()' whereas, running via apache, it fails with; 'Call to undefined function: sqlite_query()' I have

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

2005-10-30 Thread JeRRy
Hi, Errors are more than likely not being produced because of the '@' symbol. Try removing this and see how you go. Also check your code for syntax errors. These will be produced within the errors. J -start of message---

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

[PHP-DB] Basic SQLite test failing..

2005-10-30 Thread Eoin Hennessy
Hello, I have the following very basic sqlite test harness: When running via CLI the script goes into 'sqlite_open', but never comes out, i.e. none of the rest of the code is hit. When running via apache and mod_php, it gets out of 'sqlite_open' with a valid connection but never comes out of the