Skip to content

This project is a basic graphical interface for customer registration created using Java, Swing and PostgreSQL.

Notifications You must be signed in to change notification settings

bsperezb/Client-registration-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cliente Registration Java GUI


alt text


This project was created as a solution to challenge 5 of MisionTIC 2022. it was developed using Java, jbdc module, Swing and Mysql.

Quick setup

  1. Launch the MySQL Command-Line Client. To launch the client, enter the following command in a Command Prompt window: mysql -u root -p .

  1. 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;

  1. Run the java main class on src/Vista/vistaCliente.java.

  1. Enjoy

About

This project is a basic graphical interface for customer registration created using Java, Swing and PostgreSQL.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages