Database Connectors for Dash

I went through the documentation and the forum but I could not find a clear way to use database connectors.

So, I ask, is there a way to use the database connection framework already built to power the dashboards?

Thanks

It’s not really a Dash issue you’re asking, more a Python one. You can use just about any db cursor - depending on what database you’re using - in Python, shape the data in Pandas, and spit it out for Dash to process/render.

Have a Google for tutorials on Python and MySQL to get you going.

I figured that out later.
Thanks anyway