導航:首頁 > 編程語言 > javamysql建表

javamysql建表

發布時間:2023-12-29 23:14:38

1. 如何用java創建MYSQL的數據表

Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","root");

String sql = "CREATE TABLE tableName (id int not null, name varchar(20) not null, age int null, primary key (id));";

PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.executeUpdate();

2. eclipse怎麼建立mysql資料庫表的java文件

方法/步驟

1.前邊的事例是把資料庫的驅動,連接,用戶名和密碼都寫在了類中,耦合性太高,當我們資料庫變更或者資料庫類型更換後,需要去重新更改代碼,很不方便。
解決的方法:把資料庫的驅動,連接,用戶名和密碼寫在配置文件中,通過讀取配置文件的方式進行代碼編寫,而以後如果資料庫變更直接修改配置文件即可!
2.在工程中右鍵新建file,命名為jdbc.properties

3.創建完畢如圖:

4.在jdbc.properties文件中輸入如下信息,分別是資料庫的驅動,連接,用戶名和密碼

5.新建JdbcTest2.java類

6.輸入如下代碼:

7.代碼說明:
這段代碼是讀取配置文件,把配置文件中的各個項通過名稱讀取出來

8.這段代碼是通過反射來創建Driver對象,反射就是類的實例化

9.在主函數中輸入如下,測試方法

10.運行之後的結果如下,表示連接成功!

3. Java Web 項目,資料庫建表

Java 使用executeUpdate向資料庫中創建表格

一、創建mysql.ini文件,配置如下

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3306/select_test
user=root
pass=123456

這樣以後修改資料庫的配置直接在mysql.ini文件中修改。

二、編寫代碼

initParam方法: 獲得mysql.ini中的數據

createTale方法: 連接資料庫,並且executeUpdate執行sql語句。此例的sql文件為創建表語句。

main方法: 傳入Sql語句。

class ExecuteDDL {

private String driver;
private String url;
private String user;
private String pass;
Connection conn;
Statement stmt;
public void initParam(String paramFile) throws Exception {
Properties props = new Properties();
props.load(new FileInputStream(paramFile));
driver = props.getProperty("driver");
url = props.getProperty("url");
user = props.getProperty("user");
pass = props.getProperty("pass");
}

public void createTale(String sql) throws Exception{
try {
Class.forName(driver);
conn = DriverManager.getConnection(url,user,pass);
stmt = conn.createStatement();
stmt.executeUpdate(sql);
}
finally
{
if (stmt != null) {
stmt.close();
}
if (conn != null) {
conn.close();
}
}
}

/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub

ExecuteDDL ed = new ExecuteDDL();
ed.initParam("src/mysql.ini");
ed.createTale("create table student " +
"(id int, " +
"name varchar(50), " +
"num varchar(20) )");
System.out.println("Creating table success!");
}

注意事項:傳入的Sql語句最好在MySql測試通過,並且傳入的mysql.int文件的路徑必須正確。

當執行完畢後,在MySql的select_test資料庫中查看該Student表是否已經創建成功了。

三、使用executeUpdate方法,向表中插入數據。

將上面的創建表的Sql語句改為插入數據表的語句,執行executeUpdate方法,其結果就是想表中插入數據。

創建insertSql變數。

private static String insertSql = "insert into student values(1,'XiaoMing','06108787')";

執行插入語句。

ed.createTale(insertSql);

4. 在java中怎麼創建資料庫和資料庫表

?????正常不會在java中進行創建資料庫和數據表,只會對資料庫進行操作;
資料庫的建立需要數據開發工具(SQL
server2005或者其他的)來設計;

閱讀全文

與javamysql建表相關的資料

熱點內容
630升級工程武器 瀏覽:936
用換機助手接收的軟體文件在哪找 瀏覽:282
閱達app一教一輔五年級有哪些 瀏覽:7
win10系統用f2調節音量 瀏覽:19
壓縮文件密碼器 瀏覽:840
線下活動數據分析有哪些 瀏覽:314
助聽器插片式編程線如何連接 瀏覽:293
怎麼刪除系統休眠文件 瀏覽:914
搜索文件內容中包含的文字並替換 瀏覽:542
微信相冊程序圖標 瀏覽:714
win8怎麼顯示文件格式 瀏覽:547
文件伺服器中毒 瀏覽:721
如何修改網站訪問次數 瀏覽:518
mdfldf是什麼文件 瀏覽:569
文件在桌面怎麼刪除干凈 瀏覽:439
馬蘭士67cd機版本 瀏覽:542
javaweb爬蟲程序 瀏覽:537
word中千位分隔符 瀏覽:392
迷你編程七天任務的地圖怎麼過 瀏覽:844
word2003格式不對 瀏覽:86

友情鏈接