Skip to content

Satyakm/LoginApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

LoginApp

This is a maven project Built using Spring 4.3.2.RELEASE Import the file using maven Import to run the application

DB Schema Creation file is place under the src >> main >> resource >> LoginApp.sql

--Created in mysql dB

CREATE SCHEMA loginapp ;

-- Creating Table

CREATE TABLE user_info ( User_id int(11) NOT NULL AUTO_INCREMENT, User_name varchar(45) DEFAULT NULL, User_pwd varchar(45) DEFAULT NULL, PRIMARY KEY (User_id) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

SELECT * FROM loginapp.user_info;

INSERT INTO loginapp.user_info (User_name, User_pwd) VALUES ('', '');

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors