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 ww . ja va 2s.c o m*/ import android.database.Cursor; public class LongHandler extends TypeHandler<Long> { @Override public String getSQLType() { return "INTEGER"; } @Override public Long fromCursor(String name, Cursor content) { return content.getLong(content.getColumnIndex(name)); } }