Skip to content

CRUDS mini project in java with MySQL connection by XAMPP

Notifications You must be signed in to change notification settings

CamilopInge/cruds_mysql_java

Repository files navigation

  1. TERMINAL MYSQL DATABASE prueba_user

CREATE DATABASE prueba_user

USE prueba_user

CREATE TABLE users( id_user INT NOT NULL AUTO_INCREMENT, first_name VARCHAR(50) NOT NULL, last_name VARCHAR (50) NOT NULL, email_address VARCHAR (50) NOT NULL UNIQUE, phonenumber CHAR(10) UNIQUE, create_at TIMESTAMP NOT NULL DEFAULT (NOW()), PRIMARY KEY (id_user) )

  1. Importar la libreria del mysql-connector-java-5.1.18-bin.jar

About

CRUDS mini project in java with MySQL connection by XAMPP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages