Wednesday, October 22, 2008

MySQL

Download MySQL here.

CREATE TABLE address_books (first_name VARCHAR(25), last_name VARCHAR(25), phone_number VARCHAR(15), PRIMARY KEY (phone_number));


INSERT INTO address_books (first_name,last_name,phone_number) VALUES ('David','Freer','786-877-4573')";
-------
Next, create a student database using MySQL and a table with some information.Then create a java program (using Netbeans) and show you are able to update it and delete data from the database.Work with another classmate and upload it to your FTP space. However, when you finish call me over and I'll grade it in class.

If you need numbers, you can use INT this.

No comments: