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;
create schema Reto5;
drop if exists CLIENTE;
create table CLIENTE;
ID integer foreign key auto_increment;
DOC_INDENTIDAD integer not null;
NOMBRES varchar(100) not null;
APELLIDOS varchar(100) not null;
TELEFONO integer not null;- Run the java main class on
src/Vista/vistaCliente.java.
- Enjoy
