Paperless Query Language Plugin for SWV. Connect Webview JS with Android System and Storage.
PQL is as easier as it can get, simple push and pull of data. New information is pushed at the bottom of the DB and same for pull as new information is taken from the botttom.
PQL pql = new PQL();
//commands
pql.write(...);
pql.list(...);
pql.read(...);
pql.flush_all(...);
pql.write(String id, String data, Context context);
pql.list(int type);
/*
type: 1 = all variables
type: 2 = unique variables
*/
pql.pull(Context context);
To remove all the content from database file.
pql.flush_all(Context context);