Back to project page SimpleStorage.
The source code is released under:
Apache License
If you think the Android project SimpleStorage 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.njzk2.simplestorage.handler; /*from w w w . j a v a 2s . c o m*/ import android.database.Cursor; public class IntHandler extends TypeHandler<Integer> { @Override public String getSQLType() { return "INTEGER"; } @Override public Integer fromCursor(String name, Cursor content) { return content.getInt(content.getColumnIndex(name)); } }