SQLite Archives - Androhub

Room Database | Android Jetpack – Part 2

In the first part of the Room Database article, we learned how to integrate Room Database to Android applications and perform CRUD operations. In this article, we will learn Room Database something more in detail. VIDEO TUTORIAL @Ignore If we have to ignore any column from the Entity then you can use @Ignore annotation

Read More

Room Database | Android Jetpack – Part 1

In this article, We are going to learn how to implement the Room Database in Android Application. What is Room Database? Room is a persistence library part of Android Jetpack Components. It provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite. Benefits of Room Compile-time verification

Read More
Content Provider

Android Content Provider

A content provider component supplies data from one application to others on request. Such requests are handled by the methods of the ContentResolver class. A content provider can use different ways to store its data and the data can be stored in a database, in files, or even over a network. Content providers let you

Read More
SQLite Database

Android SQLite Database

1. What is SQLite? SQLite is an Open Source database. SQLite supports standard relational database features like SQL syntax, transactions and prepared statements. The database requires limited memory at runtime (approx. 250 KByte) which makes it a good candidate from being embedded into other runtimes. SQLite supports the data types TEXT (similar to String in

Read More