Create offline only database, which contains text. Need to insert data manually. App only read and display data
Asked
Active
Viewed 872 times
2
-
check this link https://reactnativecode.com/insert-data-into-realm-local-database/ – Pratius Dubey Jul 30 '18 at 13:50
-
@PratiusDubey, thankz for the reply. Is there any way to implement the database first like mySQL, because app does only read and display text from the db. There is no any insert, update functions. – SPD Jul 31 '18 at 04:08
-
Let me explain in answer – Pratius Dubey Jul 31 '18 at 04:18
1 Answers
1
If you want to manage offline functionalities with full RDMS it's may not be achievable in any Phone app platform. because there is no Data part implemented in any phone. But we can achieve by Web API and other stuff. And apart from this for local/offline database management below are support lightweight Database by React Native.
- Realm
- Firebase
- SQLite
- Core Data
- PouchDB
- Async Storage(not a full scale database, but still quite popular).
- MongoDB.
- Xml(File management).
- Json(File management).
And these are all not fully database where we can't write all function of database like Data Definition Language (DDL),Data Manipulation Language (DML).
For full definition of offline database please check this link
Check Full offline Implementation
I hope it will be helpful...

Pratius Dubey
- 673
- 6
- 19