第三題
阿新 • • 發佈:2021-01-06
技術標籤:雜七雜八
建立資料庫
CREATE DATABASE exam3;
USE exam3;
CREATE TABLE goods_1(
goods_id int auto_increment primary key,
name varchar(50) not null,
price decimal(20,2) not null,
mktyprice decimal(20,2) not null,
mkt_enable tinyint not null,
creatime timestamp);
之後,點匯出嚮導,匯出SQL檔案即可
建立 html 和servlet
新增兩個包
第一個goods類,主要進行,資料的宣告,和get()、set()、有參構造方法和無參構造方法
第二個SQL類,進行資料庫的連線,獲取資料
public static Connection getConnection()
throws ClassNotFoundException,SQLException{
Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://127.0.0.1:3306/jdbc";
String user;
String pass;
Connection conn = DriverManager.getConnection(url, user, pass);
return conn;
}
第三個jsp類,獲取相應,顯示資料