一般建資料庫都是在資料庫軟體中新建的,然後再連接資料庫
B. java語言如何動態循環創建mysql資料庫基本表,可以實現嗎
下面是一個簡單的連接MySQL資料庫,並操作資料庫表的例子:
import java.sql.*;
public class TestMysql {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
//載入驅動
Class.forName("com.mysql.jdbc.Driver");
//創建連接
conn = DriverManager
.getConnection("jdbc:mysql://localhost/bbs?user=用戶名&password=密碼");
stmt = conn.createStatement();
rs = stmt.executeQuery("select * from user");
while (rs.next()) {
String user = rs.getString(1);
String password = rs.getString(2);
System.out.println("用戶名:" + user + "," +" 密碼:" + password );
}
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
} catch (SQLException ex) {
ex.printStackTrace();
} finally {
try {
if (rs != null) {
rs.close();
rs = null;
}
if (stmt != null) {
stmt.close();
stmt = null;
}
if (conn != null) {
conn.close();
conn = null;
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
當然前提是要把MySQL的連接驅動JAR文件添加到工程里
C. 如何在MYSQL資料庫中新建一個資料庫
1、安裝:
首先要安裝MySQL,並且配置信息。創建一個快捷鍵到桌面上,雙擊軟體,打開軟體,界面如下圖所示,什麼都沒有,我們要先創建一個連接。
D. 如何在MYSQL資料庫中新建一個資料庫
1、打開電腦的SQL軟體 ,輸入用戶名和密碼,連接上Mysql主機地址,將Mysql啟動。