What database is used in android? How does it differ from client-server database management systems?
Answer / nc1-309
Database is used in Android is SQLite
Since Android was created, we app developers have been using SQLite to store our local data. Sometimes directly with SQL statements, sometimes using an Object-Relational Mapper (ORM) as an abstraction layer, but either way, we've been using SQLite at the end of the day.
SQLite is different from client-server database management system :-
SQLite is a server-less database and is self-contained. This is also referred to as an embedded database which means the DB engine runs as a part of the app. On the other hand, MySQL requires a server to run. MySQL will require a client and server architecture to interact over a network.
| Is This Answer Correct ? | 4 Yes | 1 No |
what is the difference between dynamic receiver and static receiver? When will you use dynamic broadcast receivers?
Why is android so popular?
What is a pending intent?
What is setlistadapter?
what is a fragment? How it differs from activity?
What is value on component’s attribute layout_widtlf and layout_heighl to display the component big enough to?
List the features of android?
I keep hearing 'popping/clicking' sounds from the speaker?
What is so special about android?
what does adt stand for in android?
What do you mean aidl?
Explain me onsavedinstancestate() and onrestoreinstancestate() in activity?