Posted by Patrick Drouin on 02/03/06 21:27
Simple question, I hope.
I have read everywhere that the following code should work :
<?php
$id = dba_open( "/tmp/test.db", "n", "db4" )
or die( "Couldn't open database" );
dba_close($id);
?>
When I run it, the database is created without a problem but the die()
statement is executed. Any idea why it can create the DB but it tells me
it can't?
Thanks,
Patrick
[Back to original message]
|