I'd like to connect a MySQL database to app in JavaFX... I want to display information from database in table from picture. Any tips? enter image description here
Asked
Active
Viewed 24 times
0
-
Study this tutorial: [How to connect JavaFX with SQLite](https://edencoding.com/connect-javafx-with-sqlite/), it is for sqllite, but the concept is the same for any JDBC compatible database, including MySQL. JavaFX is just Java, there is nothing special about connecting to a database in JavaFX vs any other Java application other than to be aware of the JavaFX threading model and potentially optimize your database operations within that model. – jewelsea Feb 07 '22 at 20:13