My question is similar to Two content providers accessing the very same database, but I've few more questions around it:
- Can two content providers from two different application access the same table. Say, I've database "db1" and table "names" under it created by CP1. Now, I want CP2 from another application able to detect if "db1/names" exist. If it does, then read from it and update value or so on, otherwise create one.
- If above is possible, then where can I look at for implementation related sample code ?