This project was created as a solution to challenge 5 of MisionTIC 2022. it was developed using Java, jbdc module, Swing and Mysql.
- Launch the MySQL Command-Line Client. To launch the client, enter the following command in a Command Prompt window: mysql -u root -p .
- Create Mysql Database:
drop if exists Reto5;
createschemaReto5;
drop if exists CLIENTE;
createtableCLIENTE;
ID integerforeign key auto_increment;
DOC_INDENTIDAD integernot null;
NOMBRES varchar(100) not null;
APELLIDOS varchar(100) not null;
TELEFONO integernot null;- Run the java main class on
src/Vista/vistaCliente.java.
- Enjoy
