Android Open Source - JSQL S Q L Helper






From Project

Back to project page JSQL.

License

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.

Java Source Code

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);
}




Java Source Code List

com.example.jsqlitetest.TestActivity.java
com.example.jsqlitetest.TestDBHelper.java
com.wenchao.jsql.JSQLite.java
com.wenchao.jsql.SQLHelper.java