Today I'm going to show you how to create MySQL database which we are going to use for the next few lessons. From this post, I will use Netbeans IDE if you guys not familiar with Netbeans please read the following posts,
Netbeans
For this post and some upcoming posts, I will use following Mysql database.
create database TestJDBC;
CREATE TABLE `testjdbc`.`user` (
`userID` VARCHAR(6) NOT NULL,
`name` VARCHAR(45) NOT NULL,
`age` INT NOT NULL,
PRIMARY KEY (`userID`));
I hope you guys create above database in your pc without any trouble. Catch you guys in my next post Bye......!
I hope you guys create above database in your pc without any trouble. Catch you guys in my next post Bye......!
No comments:
Post a Comment