CRUD or Create, Read, Update, Delete is a basic that must be mastered first before you create database programming on a larger scale, because whatever application is made, it will load the CRUD.
Currently, we will learn to create a Java Desktop CRUD using Netbeans, the database to be used is mysql. In the following article, there are several steps that we will do, including:
- Creating Database
- Creating a Project
- Making Database Connection
- Creating a Windows Form Design
- Making the Data Display Process (Read)
- Make the Data Save Process (Create)
- Making the Data Change Process (Update)
- Creating the Delete Process
- Creating Database
The selection of a Database or RDBMS (Relationship Database Management System) is very important because it will affect the effectiveness and speed of executing each command. We can use many databases such as Microsoft Access, MySQL, MariaDB, Postgres SQL, SQL Server, Oracle Database.
for a more helpful tutorial you can find in this site :
