Re: [sqlite] error:unable to open database file

2008-07-24 Thread kriscbe
hi all, solved it.previously for every 1 second in my code DB file 26 times opened and 26 times colses. so after particular no of time the DB file unable to reopen that file. for that i used a singleton pattern thats why DB file open only once in my entire code. because of that it works fine. th

Re: [sqlite] error:unable to open database file

2008-07-24 Thread kriscbe
i tried with 3 options in that pragma temp_store(0,1,2). but same problem occured. now that time increased for every 40 secs. thanks kris cbe Dennis Cote wrote: > > kriscbe wrote: >> >> i am getting new problem while executing my sqlite3 using c++ after some >> no >> of operations on db fil

Re: [sqlite] error:unable to open database file

2008-07-23 Thread Dennis Cote
kriscbe wrote: > > i am getting new problem while executing my sqlite3 using c++ after some no > of operations on db file > i t gives error "unable to open database file" > This is probably another case of a misleading error message. SQLite may be trying to open a temporary file, not your data

[sqlite] error:unable to open database file

2008-07-23 Thread kriscbe
hi everyone, i am getting new problem while executing my sqlite3 using c++ after some no of operations on db file i t gives error "unable to open database file" actually my application is every time update a class members and write in to DB once and read the updated field from DB. it is done fo