I'm using SQLite3 and catalyst to develop an application. When I try to
access the database file (tmp/daatabase) , It gives error as "UNABLE TO OPEN
tmp/database".
When I access databse without mentioning the name of database file, It
works!! But Catalyst does not recognize the changes made in databse.


$ sqlite3 tmp/database
sqlite>create table sample(id INTEGER(3), name TEXT);
unable to open tmp/database!!!
$

$ sqlite3
sqlite>create table sample(id INTEGER(3), name TEXT);
$
It Works... But Catalyst code doesnot access the changes made in this case!!
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to