Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-19 Thread David White
Ok, hosed over by proguard once again. Needed to make sure the following was in my proguard-project.txt file: -keep class org.sqlite.** { *; } Oh man! I must be getting old. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-19 Thread David White
Hi Dan and thanks again for your response. So far, I have heard this from only a single user. Silly Google no longer seems to produce ARM system images for the emulator so I cannot test as my computers are all AMD. So I cannot say about that. Wish I could. I have tried. Here is the device

Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-19 Thread David White
things. Sorry for the bother! On 9/19/2018 8:35 AM, David White wrote: Oops. Just sent this from the wrong email account. Sorry for any duplication. Hi Dan and thanks again for your response. So far, I have heard this from only a single user. Silly Google no longer seems to produce ARM system

Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-19 Thread David White
Oops. Just sent this from the wrong email account. Sorry for any duplication. Hi Dan and thanks again for your response. So far, I have heard this from only a single user. Silly Google no longer seems to produce ARM system images for the emulator so I cannot test as my computers are all AMD.

Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-18 Thread David White
On 09/19/2018 12:18 AM, David White wrote: >> I am stuck trying to use the precompiled binaries + Android bindings on >> Android 8. Does anyone know how to reach the maintainers for this stuff? >Posting here will work. >> I have posted a ticket on the wiki but no luck

[sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-18 Thread David White
I am stuck trying to use the precompiled binaries + Android bindings on Android 8. Does anyone know how to reach the maintainers for this stuff? I have posted a ticket on the wiki but no luck. Thanks --- This email has been checked for viruses by Avast antivirus software.

[sqlite] Android Issue Loading Pre-compiled Binaries

2018-09-03 Thread David White
I have someone with an Android 8, arm64-v8a device testing a new Android app which uses the precompiled Sqlite binaries for Android. It appears there is some issue in loading the library. In the Android app log I see: 08-29 15:27:49.006 F/DEBUG (9478): #07 pc 00334204

[sqlite] Latest Pre-Compiled Android Binaries

2018-09-03 Thread David White
Hello and thanks for any help with this. I have been using the pre-compiled Android binaries on the download page for some time. Recently one of my apps had a "missing class" problem and I thought it might be due to the Sqlite libraries I had been using. These were dated 12/9/2017 and I saw

Re: [sqlite] Multiple Match statements per query

2011-04-19 Thread David White
Database abstraction, scope, multi-threading. A few stack layers out is my loop requesting each record by rowid. And there's no predicting which thread will make the request. Likely, there will be 50 threads making very similar requests at the same time. If I could clone the statement, then