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; public abstract class DBCallback { abstract public void exec(long l); //long 'l' is the number of rows affected. public void onError(Exception e) {} }