如何使用servlet创建mysql数据库请给出一些基本的想法

时间:2013-02-07 05:16:00

标签: mysql java-ee servlets

我正在研究去年的项目。我想使用MySQL连接JDBC数据库, 请任何人就如何使用MySQL

创建servlet数据库给出基本想法

2 个答案:

答案 0 :(得分: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";

然后根据您的doGetdoPost

调用createDb方法
         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

答案 1 :(得分:0)

Servlet

doXXX(){

//Obtain DriverManager instance
//Create a connection with `connecturl`
//Create Statement to interact with db
//Have Resultset with data


}