Database framework for Flet #647
-
I have question, how to flet can intergration with database and what the best database management tools for flet? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Consider Flet as just the UI builder(frontend). |
Beta Was this translation helpful? Give feedback.
-
here is a very simple example of how you can use SQLAlchemy with Flet for Android to use the local SQLite storage. You can expand it but the idea stays the same. |
Beta Was this translation helpful? Give feedback.
Consider Flet as just the UI builder(frontend).
You just have to build up your backend consisting of all your python stuffs(sqlite3, mysql, ..etc) and find a way to link it to flet. (ex: retrieve some values in your database using python, and display it (add to page) using Flet
Text
control)#pythonEverywhere