What database is used in android? How does it differ from client-server database management systems?
Answer Posted / 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 |
Post New Answer View All Answers
How are escape characters used as attribute?
What is the difference between a file, a class and an activity in android?
How do you avoid an anr?
What is main/java/com.
What items or folders are important in every android project?
What is the difference between an android and iphone?
Name the four essential states of an activity.
what is the difference between dynamic receiver and static receiver? When will you use dynamic broadcast receivers?
Is google moving away from android?
What’s wake locks?
What are the main components in android?
What is android sdk?
What is app/ directory?
Is there anyway to determine if an intent passed into a broadcastreceiver’s on receive is the result of a sticky broadcast intent, or if it was just sent?
what is aapt in android?