Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

First let you know I am new in Android.

  1. Is it good practice to use ContentProvider to handle database table operations only for one application?

  2. Trying to create multiple classes to handle database table operations. Created a database helper as follow:

    public class WSDatabaseHelper extends SQLiteOpenHelper {

        private static final String DATABASE_NAME = "wsemp";
        private static final int DATABASE_VERSION = 5;
    
        public WSDatabaseHelper(Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);
        }
    
        @Override
        public void onCreate(SQLiteDatabase database) {
            ItemTable.onCreate(database);
            CustomerTable.onCreate(database);
        }
    
        @Override
    public void onUpgrade(SQLiteDatabase database, int oldVersion, int newVersion) {
            ItemTable.onUpgrade(database, oldVersion, newVersion);
            CustomerTable.onUpgrade(database, oldVersion, newVersion);
        }
    }
    

Created a class to handle database table operation:

public class CustomerBean {
    private WSDatabaseHelper database;

    @Override
    public boolean onCreate() {
        database = new WSDatabaseHelper(getContext());
        return false;
    }

public boolean insertObject(valObj) {
    SQLiteDatabase db = database.getWritableDatabase();
    db.insert(CustomerTable.TABLE_CUST_ACCOUNT_INDEX, null, values);
    }
}

But now I am not sure how I can call this insertObject function from my activity or session file. I tried by CustomerBean.isnertObject(obj) but it's asking to change the method to static.

share|improve this question
i do'nt understand what you are trying to do. what is customerbean in regard to customertable ? why the @Override when nothing is overriden ? what tutorial have you followed ? – njzk2 Feb 21 at 14:53
I have used this tutorial vogella. CustomerTable contains only the create table statement and static names of the table fields. Forget the CustomerTable and @override. Only please let me know how I can call the insertObject() method of CustomerBean class from Activity? – ray Feb 21 at 15:12
i don't understand what prevents you from calling it directly ? – njzk2 Feb 21 at 15:39

1 Answer

up vote 3 down vote accepted

Is it good practice to use ContentProvider to handle database table operations only for one application?

If your data is exclusive only for your application and other application cannot use it I don't see any reason to use ContentProviders. ContentProvider is used as an interface for sharing your application's data to other application. If your data can be shared or other application is dependent on it then you have to use ContentProvider.

Also you can create set of permissions to your content providers to restrict some operations in the provider.

share|improve this answer
If the data absolutely must be private, then there wouldn't be any benefit to using a ContentProvider. It adds a layer of abstraction on how data is handled in the background, but that can be achieved with your own class. – DeeV Feb 21 at 14:53
I think you may find that, even if your data is entirely private, it is more convenient to wrap it in a CP. A great example is how much easier it is to use a SimpleCursorLoader than it is to create your own working subclass of AsyncTaskLoader. – G. Blake Meike Feb 21 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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