[android-developers] Re: Database - Content Provider - Syncable

2008-09-05 Thread Yalcin
Is there a best praxis to follow now to make a content provider’s database to arrange with a network database? Not synchronization but a workaround to keep both of them expandable either from android user or network user. On Sep 5, 10:50 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > 2008/9/2 jo

[android-developers] Re: Database - Content Provider - Syncable

2008-09-05 Thread Megha Joshi
2008/9/2 joebowbeer <[EMAIL PROTECTED]> > > On Aug 29, 4:43 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > > Android framework does not provide any inbuilt service to sync your app's > > database with with a network database. > > You could use the the HttpClient library to communicate with the > >

[android-developers] Re: Database - Content Provider - Syncable

2008-09-02 Thread joebowbeer
On Aug 29, 4:43 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > Android framework does not provide any inbuilt service to sync your app's > database with with a network database. > You could use the the HttpClient library to communicate with the > Server...apart from the the sync logic is something

[android-developers] Re: Database - Content Provider - Syncable

2008-08-29 Thread Megha Joshi
Android framework does not provide any inbuilt service to sync your app's database with with a network database. You could use the the HttpClient library to communicate with the Server...apart from the the sync logic is something you will have to design ...sorry I can't help much there... 2008/8/2

[android-developers] Re: Database - Content Provider - Syncable

2008-08-29 Thread Yalcin
Hi, the idea is to have two databases, one on android device and another on a server. databases and there tables can be populated with new data either on android device or on server. Use case: user can add through UI (email, sms, mms) new data to the tables and populate them on android device. U

[android-developers] Re: Database - Content Provider - Syncable

2008-08-29 Thread Megha Joshi
2008/8/29 Yalcin <[EMAIL PROTECTED]> > > My application has a content provider, which operates on a database > with 4 tables. I want to make them synchable. Could you clarify this a bit more...an example of what your are trying to do will be nice... If you meant "synchable" as in they should ha