Dashboard from Oracle Database

I have created the dashboard in which i am reading the data from oracle database and storing it in a pandas Dataframe and then creating graphs from it.

every time when the new row is adding in database my graph is not replicating it even after i refresh the URL.

could anyone please suggest me the way to solve this and explain me why this is happening.

It sounds like you’re probably loading the contents of the database into memory once when the app is started, causing the same data to be displayed every time someone visits the page?

Check out the documentation on live updates, particularly the “Updates on Page Load” section. If you query the database as the page is loaded you could arrange to have up to date data each time the user refreshes the page.

1 Like