我正在做我去年的项目。我想使用连接MySQL
数据库 JDBC
,请任何人给我关于如何MySQL
使用创建数据库的基本想法servlet
问问题
2136 次
2 回答
1
在你的类中创建如下静态变量
// JDBC driver name and database URL
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost/";
// Database credentials
static final String USER = "username";
static final String PASS = "password";
然后根据您的 doGet
or调用 createDb 方法doPost
public static void CreateDb() {
Connection conn = null;
Statement stmt = null;
try{
//STEP 2: Register JDBC driver
Class.forName("com.mysql.jdbc.Driver");
//STEP 3: Open a connection
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
//STEP 4: Execute a query
System.out.println("Creating database...");
stmt = conn.createStatement();
String sql = "CREATE DATABASE STUDENTS";
stmt.executeUpdate(sql);
System.out.println("Database created successfully...");
}catch(SQLException se){
//Handle errors for JDBC
se.printStackTrace();
}catch(Exception e){
//Handle errors for Class.forName
e.printStackTrace();
}finally{
//finally block used to close resources
try{
if(stmt!=null)
stmt.close();
}catch(SQLException se2){
}// nothing we can do
try{
if(conn!=null)
conn.close();
}catch(SQLException se){
se.printStackTrace();
}//end finally try
}//end try
System.out.println("Goodbye!");
}//end main
}//end JDBCExample
于 2013-02-07T06:29:09.457 回答
0
小服务程序
doXXX(){
//Obtain DriverManager instance
//Create a connection with `connecturl`
//Create Statement to interact with db
//Have Resultset with data
}
于 2013-02-07T05:25:14.460 回答