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!

link|improve this question

78% accept rate
feedback

1 Answer

There is a problem in your code, whatever approach you use the ordering of statement should be as follow:

@Override
protected void onDestroy()
{
    if(dbWord != null)
    {
        dbWord.close();
    }
 super.onDestroy();
}
link|improve this answer
Thanks for the tip. – Rob Jul 21 '11 at 4:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.