ユーザーが入力した列の名前で、java に 2 つの列を含む MySQL テーブルを作成しますか?
質問する
63 次
2 に答える
2
まず、データベースに接続する必要があります。次に、クエリを実行できます。
System.out.println("Table Creation Example!");
Connection con = null;
String url = "jdbc:mysql://localhost:3306/";
String dbName = "jdbctutorial";
String driverName = "com.mysql.jdbc.Driver";
String userName = "root";
String password = "root";
String column1 = "nameOfTheFirstColumn";
String column2 = "nameOfTheSecondColumn";
try{
Class.forName(driverName).newInstance();
con = DriverManager.getConnection(url+dbName, userName, password);
try{
Statement st = con.createStatement();
String table =
"CREATE TABLE Employee11(column1 + " varchar(10), + column2 + "Emp_name varchar(10))";
st.executeUpdate(table);
System.out.println("Table creation process successfully!");
}
catch(SQLException s){
System.out.println("Table all ready exists!");
}
con.close();
}
catch (Exception e){
e.printStackTrace();
}
このソースから適応。
于 2013-04-16T00:46:48.403 に答える