/javafx-mysql-crud

Simple Library CRUD app

Primary LanguageJava

JavaFX-MySQL CRUD

CRUD app made with JavaFX and MySQL database.

Samples

Reading data from database

crud_1

This two books were loaded from MySQL database.

Insert button

crud_2

To insert our new book in database we simply create sql query:

insert

We load our ID, Title, Author, year and Pages from TextFields.

Then we execute our query.

Update button

crud_3

All we need is ID of book that we want to update.

Delete button

crud_4

Also all we need to delete our book is ID.

MySQL Database

database