Back to project page sqldb.
The source code is released under:
MIT License
If you think the Android project sqldb 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 prj.sqldb; //from ww w. j av a2 s .c o m import android.database.Cursor; public class QueryResult { private final QueryParams _q; private final Cursor _c; public QueryResult(QueryParams q, Cursor c) { _q = q; _c = c; } public QueryParams getQueryParams() { return _q; } public Cursor getCursor() { return _c; } }