I am trying to create a sqlite wrapper different from android native sqlte from
https://www.sqlite.org/download.html
since a client wants to have the characteristics of said version for b4a. and try to create a wrapper. I try to make it very similar to the b4a wrapper but my attempts lead to the same message from
java.lang.UnsatisfiedLinkError: No implementation found for long org.sqlite.database.sqlite.SQLiteConnection.nativeOpen(java.lang.String, int, java.lang.String, boolean, boolean) (tried Java_org_sqlite_database_sqlite_SQLiteConnection_nativeOpen and Java_org_sqlite_database _sqlite_SQLiteConnection_nativeOpen__Ljava_lang_String_2ILjava_lang_String_2ZZ)
I can't manage to open at least one database. so I decide to come to you, great connoisseurs. I hope I can find a direction to go.
reasons why I want to achieve this.
- sqlite3_column_type which for now I'm doing it with
Cursor..RunMethod("getType",Array(x)
- Older versions of SQLite do not support RIGHT JOIN
i am trying it with slc tool
and in b4a
I am including #AdditionalJar: sqlite-android-3430000.aar
I have tried extracting clasess.java. and the same result