I need to close my WordDBAdapter object in the onDestroy method in Android. Is one of these better than the other?
@Override
protected void onDestroy()
{
super.onDestroy();
if(dbWord instanceof WordDBAdapter)
{
dbWord.close();
}
}
----- OR ------
@Override
protected void onDestroy()
{
super.onDestroy();
if(dbWord != null)
{
dbWord.close();
}
}
Thanks!