Skip to content Skip to sidebar Skip to footer

Trouble Implementing Database Into Android Project

I've been following This guide for implementing a database in an android project. This is the code for my DBAdapter class: package com.sab.namespace; import android.content.Conten

Solution 1:

You probably added the jobs table after creating the database. The onCreate would not be called. So you need to clear the data for the onCreate to be called again.


Post a Comment for "Trouble Implementing Database Into Android Project"