Back to project page JSQL.
The source code is released under:
MIT License
If you think the Android project JSQL listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.wenchao.jsql; //from w w w. ja v a 2 s. co m import java.util.Iterator; import org.json.JSONException; import org.json.JSONObject; public interface SQLHelper { public String getSQLClause(String table, String[] marchedKeys, JSONObject row, boolean recordExisting,String pkName) throws JSONException; public JSONObject prepareData(JSONObject json); }