Skip to content Skip to sidebar Skip to footer

Invalid Statement In Fillwindow()

Am I missing a close()? Ok, I have an error on my emulator, but it doesn't force close. It's a cursor Invalid Starement in fillWindow() with a PID of 651. I know it has to do wih m

Solution 1:

onCreate

db = new DBase(this);
db.open();
fillData();

onResume

fillData();

onDestroy

db.close();

worked.

Post a Comment for "Invalid Statement In Fillwindow()"