Firebase Realtime Database

Updated 27 January 2020

Save

Firebase Realtime Database

Database is an important part in our Project.Firebase realtime database allows data update,delete and store realtime data.It is an cloud hosted data which allows to store data in database as the form of NoSQL as JSON format and synchronized in realtime to every connected client.We don’t need to put any efforts in configuring the server, the Firebase will handle everything automatically and saves a big span of time and increase the productivity.

How it works in Realtime

In realtime it store data on cloud and notifies all devices in milliseconds

How it works in Offline

In offline it persist data in disk and when user comeback online all data will automatically synchronized.

Creating UserInfo class

 

Get Database Reference

To read and write into database we need to get Reference of database.

Read and Write data :

Write Data 

For writing data in database basically we use setValue() method on database reference path.This will create or update value on provided path.

The realtime database accepts multiple data types.StringLongDoubleBooleanMap<String, Object>List<Object> to store the data

 Read Data

For read data ,we use the ValueEventListener() method.


 

Delete Data

For Deleting Data you can we can use simpley removeValue() method

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


2 comments

  • Vijay
    • Ashwani Yadav (Moderator)
  • Start a Project


      Message Sent!

      If you have more details or questions, you can reply to the received confirmation email.

      Back to Home