How to store data on Firebase - Delphi XE 10

What is the best way to connect to Firebase DBaaS from Firebase from Embarcadero Delphi XE 10?

I am not sure how to do this with AnyDAC. Or if a component exists (i coundnt find it in the search)

Any help? thank

+5
source share
3 answers

Firebase was acquired by Google and now provides many tools and functions (cloud messaging, authentication, real-time database, storage, hosting, etc.). If you are looking for a service that stores and synchronizes application data in real time, the Realtime database this is for you. Real-time database: “NoSQL database with cloud storage. Data is stored as JSON, synchronized via connected devices in milliseconds and available when your application shuts down.” Firebase provides an SDK library for Android, iOS and Web (Javascript). In addition, the REST API is available and, like Robert Love , the previous post says, Firebase4Delphi(I wrote this) The library provides access to the REST API in Delphi. Here is an example of using the library.

+8
source

There is an open source project called Firebase4Delphi . It provides access to the Delphi REST API.

+2
source

GitHub Firebase, Firestore, Firebase Storage Firebase :

https://github.com/SchneiderInfosystems/FB4D

0

All Articles