Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

voinsource/PluginPQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

PluginPQL

Paperless Query Language Plugin for SWV. Connect Webview JS with Android System and Storage.

How it works?

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.

Creating new PQL Objects

PQL pql = new PQL();
//commands
pql.write(...);
pql.list(...);
pql.read(...);
pql.flush_all(...);

Writing to DB

pql.write(String id, String data, Context context);

Listing Available Variables

pql.list(int type);
/*
type: 1 = all variables
type: 2 = unique variables
*/

Pull all DB

pql.pull(Context context);

Flush DB

To remove all the content from database file.

pql.flush_all(Context context);