Can sqlite android interface be used outside android

The Android SDK seems to have good wrapper interfaces in the android.database.sqlite package, can this shell (jar?) Be used, for example, in Windows ms environment?

+4
source share
2 answers

No, java files for android will not work for windows, since the files are compiled into Dalvik bytecode instead of java bytecode.

+2
source

There are too many dependencies between classes like SQLiteDatabase and the rest of Android. You can grab the source code for these classes, hack them and use them, but there can be a considerable number of hacks.

0
source

Source: https://habr.com/ru/post/1339465/


All Articles