I have an existing project in firebase and the data are displayed in the run of the site but I want to view in a real-time database in the firebase console do not see the data
Related
my Realtime Database firebase keep refreshing won't display data in console
enter image description here
it was working normally
enter image description here
I am trying to connect firebase to my python app. I need realtime database because I will build another mobile app using flutter and connect it to that database. I need this data in realtime. The problem is that during creating this database, when I get to the rules section, it keeps loading and never create it, when I refresh the site, it shows that it has been created, but it just keeps loading. Is there something wrong or this is from my side?
I have a tableview in an app which is holding much more data in an array than it should be.
I would like to publish the app with the current data and continue to upload data into that tableview daily in the near future.
Is it possible to have the data added to the tableview daily in the same way that I've been adding it into the viewController through a swift file before it was published?
You can use the firebase database to store data and show them on daily basis to a tableview. Whenever firebase database will be updated, iOS application will get database change notification. You can update your tableview based on this notification with the new data. Firebase even has offline capabilities which means it can persist data locally so that data can be accessed when there is no internet connection.
https://firebase.google.com/docs/database
https://firebase.google.com/docs/database/ios/start
https://firebase.google.com/docs/database/ios/offline-capabilities
I use firebase in my ios app. For example, my database stores some data sets, which has being created by user. When user is authenticated, application starts downloading. But it is okay, when user has not bigger count of sets, because in this case, it is easy to download all data sets. On the other hand, if user has many-many data sets - it is terrible, because my app will download ALL this data immediately. How to use "page loading" with Firebase? For example - if user scroll to bottom, application starts downloading new piece of data from firebase database.
I'm trying to design an app for my club at school. What I want to happen is when there is new information about meetings or events I want to be able to add this new content to the app and then have it visible by other app users.
So my question is how would I approach this idea?
Conceptually, you're going to need to have a centralized server which contains the data, an API to connect an application to this data, and finally the end user application.
On the server end, you could have a simple database which will house the event and meeting information.
On the API end, you could have a simple script which fetches the latest entries in the database and displays the data in a standard format such as JSON or XML.
On the app end, every time the user opens the application, fetch the latest data from your API and parse it into an array. Then, just populate a table or collection with the data in that array. You could also add a pull to refresh control to fetch the latest information at any time so the user doesn't have to launch the app again.