Re: [sqlite] Android sqlite error

2014-06-13 Thread Sathish N
Hi Smith, Yes it is the internal bluetooth application(bluetooth.apk) comes with the android Os. from yours suggestion i found that the system exceeded the total number of open fd(file discriptors) due to that its facing this problem. As you have mentioned correctly it is Android Os that is block

Re: [sqlite] Android sqlite error

2014-06-13 Thread RSmith
On 2014/06/13 09:35, Sathish N wrote: hi, Thanks for the help. As i mentioned i am new to sqlite so i am trying my best. And this is not my application .its internal application of android. i am trying to understand and solve this. once again thanks for the help Hi Sathish, Apologies, our

Re: [sqlite] Android sqlite error

2014-06-13 Thread Sathish N
hi, Thanks for the help. As i mentioned i am new to sqlite so i am trying my best. And this is not my application .its internal application of android. i am trying to understand and solve this. once again thanks for the help On Fri, Jun 13, 2014 at 1:00 PM, Igor Korot wrote: > Hi, > > On Fr

Re: [sqlite] Android sqlite error

2014-06-13 Thread Igor Korot
Hi, On Fri, Jun 13, 2014 at 12:24 AM, Sathish N wrote: > hi Igor Korot, > > yes it is happening, every time i update the database. because of this the > application is getting crashed. > > Can you please help me with the solution. As this is the internal apk > inside the android. This is you app

Re: [sqlite] Android sqlite error

2014-06-13 Thread Sathish N
hi Igor Korot, yes it is happening, every time i update the database. because of this the application is getting crashed. Can you please help me with the solution. As this is the internal apk inside the android. Thanks. On Fri, Jun 13, 2014 at 12:36 PM, Igor Korot wrote: > Hi, Satnish, > >

Re: [sqlite] Android sqlite error

2014-06-13 Thread Igor Korot
Hi, Satnish, On Fri, Jun 13, 2014 at 12:01 AM, Sathish N wrote: > hi, > > Thanks for the reply. > what do you mean that i cant write at dest. i am not sure what it means. It means you are trying to execute an INSERT/UPDATE statement which fails. It's quite obvious. Thank you. > > > > > On Thu,

Re: [sqlite] Android sqlite error

2014-06-13 Thread Sathish N
hi, Thanks for the reply. what do you mean that i cant write at dest. i am not sure what it means. On Thu, Jun 12, 2014 at 11:55 PM, mm.w <0xcafef...@gmail.com> wrote: > you can't write at dest, then the journal file fails, quite obvious reading > the logs > > > On Wed, Jun 11, 2014 at 11:41

Re: [sqlite] Android sqlite error

2014-06-12 Thread Yongil Jang
Errno 24 means that too many open files. You may need to check FD counts. Regards. 2014. 6. 13. 오전 10:56에 "J Decker" 님이 작성: > /data/data/com.android.bluetooth/databases/btopp.db-journal should be > /data/data/com.android.bluetooth/files/databases/btopp.db-journal and some > systems don't allow

Re: [sqlite] Android sqlite error

2014-06-12 Thread J Decker
/data/data/com.android.bluetooth/databases/btopp.db-journal should be /data/data/com.android.bluetooth/files/databases/btopp.db-journal and some systems don't allow making subdirectories in files so my library would make it more like /data/data/com.android.bluetooth/files/databases~btopp.db-journ

Re: [sqlite] Android sqlite error

2014-06-12 Thread mm.w
you can't write at dest, then the journal file fails, quite obvious reading the logs On Wed, Jun 11, 2014 at 11:41 PM, Sathish N wrote: > I am new for sqlite. > > The following sqlite error comes in my android phone. when i run the > application sum times. > I like to know the meaning of this e

[sqlite] Android sqlite error

2014-06-12 Thread Sathish N
I am new for sqlite. The following sqlite error comes in my android phone. when i run the application sum times. I like to know the meaning of this error, why this error come and how to solve this. I googled about this but nowhere the answer is mentioned i tried all possiblities from what i got wh