siva636
siva636

Reputation: 16441

Android ContentProviders vs SQLite

If we want to share our data with other Android applications,

(1) we may create a SQlite database and make it accessible by other applications or

(2) create a ContentProvider.

What are the basic differences in the above mentioned two approaches?

Upvotes: 0

Views: 167

Answers (1)

jtt
jtt

Reputation: 13541

ContentProvider is exposing data to other application, a non-content provider database is only accessible by that application.

Upvotes: 1

Related Questions