I&#39;m using SQLite3 and catalyst to develop an application. When I try to access the database file (tmp/daatabase) , It gives error as &quot;UNABLE TO OPEN tmp/database&quot;.<br>When I access databse without mentioning the name of database file, It works!! But Catalyst does not recognize the changes made in databse.<br>
<br><br>$ sqlite3 tmp/database<br>sqlite&gt;create table sample(id INTEGER(3), name TEXT);<br>unable to open tmp/database!!!<br>$<br><br>$ sqlite3<br>
sqlite&gt;create table sample(id INTEGER(3), name TEXT);<br>
$<br>It Works... But Catalyst code doesnot access the changes made in this case!!<br><br><br>