I try to run \"getItem()\" method
public class PhoneDal extends SQLiteOpenHelper {
// Database Version
private static final int DATABASE
You are looking at a decompiled version of the android.jar file, not the actual Android code that runs on a device or emulator.
With respect to the actual problem, my guess is that you changed your database schema without changing the schema version (DATABASE_VERSION in your code). Either increment DATABASE_VERSION and implement onUpdate(), or uninstall and reinstall your app to get rid of your old database.