You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android should suppose to easy (in theory) since it support SQLite as well. Some Android guys even manage to port Spatialite (GIS extension for SQLite3) library in Android.
PhoneGap SQLiteplugin is right now for iOS devices only (i.e. Objective-C + Javascript).
Hopefully, some guys would translate the Objective-C to Java (Android SDK) and use the existing Javascipt (PGSQLitePlugin.js from iOS).
By any chance we can use real sqlite3 database for SenchaTouch-v2-SqliteProxy?
https://github.com/davibe/Phonegap-SQLitePlugin
I think this can be easily done, by replacing this line ( in SqliteConnection.js):
me.dbConn = openDatabase(me.dbName,me.dbVersion, me.dbDescription, me.dbSize);
to:
me.dbConn = new PGSQLitePlugin("test_native.sqlite3");
The text was updated successfully, but these errors were encountered: