JDBC 刪除數(shù)據(jù)庫范例

jdbc 刪除數(shù)據(jù)庫范例

在本教程將演示如何在 jdbc 應用程序中刪除數(shù)據(jù)庫。

在繼續(xù)刪除數(shù)據(jù)庫之前必須要確定是否真的執(zhí)行刪除操作,因為刪除了數(shù)據(jù)庫以后,數(shù)據(jù)庫中的所有內容都將丟失,并且無法恢復。

在執(zhí)行以下示例之前,請確保您已經準備好以下操作:

  • 具有數(shù)據(jù)庫管理員權限,以在給定模式中創(chuàng)建數(shù)據(jù)庫。要執(zhí)行以下示例,需要用實際用戶名和密碼替換這里用戶名(username)和密碼(password)。
  • mysql或數(shù)據(jù)庫已啟動并運行。

 

1. 所需步驟

使用 jdbc 應用程序創(chuàng)建數(shù)據(jù)庫需要以下步驟:

  • 導入包:需要包含包含數(shù)據(jù)庫編程所需的jdbc類的包。大多數(shù)情況下,使用import java.sql.*就足夠了。
  • 注冊jdbc驅動程序:需要初始化驅動程序,以便可以程序中打開數(shù)據(jù)庫的通信通道。
  • 打開連接:需要使用drivermanager.getconnection()方法來創(chuàng)建一個connection對象,它表示與數(shù)據(jù)庫服務器的物理連接。要創(chuàng)建一個新的數(shù)據(jù)庫,不需要在準備數(shù)據(jù)庫url時提供任何數(shù)據(jù)庫名稱,如下面的示例所述。
  • 執(zhí)行查詢:需要使用類型為statement的對象來構建和提交sql語句到數(shù)據(jù)庫。
  • 清理環(huán)境:需要明確地關閉所有數(shù)據(jù)庫資源,而不依賴于 jvm 的垃圾收集。

 

2. 刪除數(shù)據(jù)庫范例

復制以下示例代碼保存到文件:dropdatabase.java中,然后編譯并運行如下:

//step 1. import required packages

import java.sql.*;

public class dropdatabase {
    // 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 = "root";
    static final string pass = "123456";

    public static void main(string[] args) {
        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 a selected database...");
            conn = drivermanager.getconnection(db_url, user, pass);
            system.out.println("connected database successfully...");

            //step 4: execute a query
            system.out.println("deleting database...");
            stmt = conn.createstatement();

            string sql = "drop database jdbc_db";
            stmt.executeupdate(sql);
            system.out.println("database deleted 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)
                    conn.close();
            }catch(sqlexception se){
            }// do nothing

            try{
                if(conn!=null)
                    conn.close();
            }catch(sqlexception se){
                se.printstacktrace();
            }//end finally try
        }//end try
        system.out.println("goodbye!");
    }//end main
}//end jdbcexample

編譯上面代碼,如下 -

f:\worksp\jdbc> javac -djava.ext.dirs=f:\worksp\jdbc\libs dropdatabase.java

執(zhí)行上面代碼,如下 -

f:\worksp\jdbc>java -djava.ext.dirs=f:\worksp\jdbc\libs dropdatabase
connecting to a selected database...
thu jun 01 22:09:06 cst 2017 warn: establishing ssl connection without server's identity verification is not recommended. according to mysql 5.5.45+, 5.6.26+ and 5.7.6+ requirements ssl connection must be established by default if explicit option isn't set. for compliance with existing applications not using ssl the verifyservercertificate property is set to 'false'. you need either to explicitly disable ssl by setting usessl=false, or set usessl=true and provide truststore for server certificate verification.
connected database successfully...
deleting database...
database deleted successfully...
goodbye!

f:\worksp\jdbc>

下一節(jié):jdbc 創(chuàng)建刪除表實例

jdbc 教程

相關文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频