如何使用JDBC API從Oracle資料庫中現有表中刪除記錄?
您可以使用DELETE查詢從資料庫中的表中刪除特定記錄。
語法
DELETE FROM table_name WHERE [condition];
要使用JDBC API從表中刪除記錄,您需要:
註冊驅動程式: 使用**DriverManager**類的**registerDriver()**方法註冊驅動程式類。將驅動程式類名作為引數傳遞。
建立連線: 使用**DriverManager**類的**getConnection()**方法連線到資料庫。將URL(字串)、使用者名稱(字串)、密碼(字串)作為引數傳遞。
建立語句: 使用**Connection**介面的**createStatement()**方法建立一個Statement物件。
執行查詢: 使用Statement介面的executeUpdate()方法執行查詢。
讓我們使用CREATE語句在Oracle資料庫中建立一個名為**dispatches**的表,如下所示:
CREATE TABLE Dispatches( PRODUCTNAME VARCHAR2(20), CUSTOMERNAME VARCHAR2(20), DISPATCHDATE DATE, DELIVERYTIME TIMESTAMP(6), PRICE NUMBER(38), LOCATION VARCHAR2(20) );
現在,我們將使用INSERT語句在**dispatches**表中插入5條記錄:
insert into dispatches values('Key-Board', 'Raja', TO_DATE('2019-09-01', 'yyyy/mm/dd'), TO_DATE('11:00:00', 'hh:mi:ss'), 7000, 'India'); insert into dispatches values('Earphones', 'Roja', TO_DATE('2019-05-01', 'yyyy/mm/dd'), TO_DATE('11:00:00', 'hh:mi:ss'), 2000, 'Vishakhapatnam'); insert into dispatches values('Mouse', 'Puja', TO_DATE('2019-03-01', 'yyyy/mm/dd'), TO_DATE('10:59:59', 'hh:mi:ss'), 3000, 'Vijayawada'); insert into dispatches values('Mobile', 'Vanaja', TO_DATE('2019-03-01', 'yyyy/mm/dd'), TO_DATE('10:10:52', 'hh:mi:ss'), 9000, 'Chennai'); insert into dispatches values('Headset', 'Jalaja', TO_DATE('2019-04-06', 'yyyy/mm/dd'), TO_DATE('11:08:59', 'hh:mi:ss' ), 6000, 'Goa');
下面的JDBC程式建立與Oracle資料庫的連線,並從Dispatches表中刪除名為Jalaja的客戶的記錄。
示例
import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class DeleteRecordsOracle { public static void main(String args[]) throws SQLException { //Registering the Driver DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); //Getting the connection String oracleUrl = "jdbc:oracle:thin:@localhost:1521/xe"; Connection con = DriverManager.getConnection(oracleUrl, "system", "password"); System.out.println("Connection established......"); //Creating the Statement Statement stmt = con.createStatement(); //Query to delete records String query = "Delete from dispatches where CUSTOMERNAME = 'Jalaja'"; int i = stmt.executeUpdate(query); System.out.println("Rows deleted: "+i); //Retrieving data ResultSet rs = stmt.executeQuery("Select * from dispatches"); System.out.println("Contents of the table after deleting the records: "); while(rs.next()) { System.out.print("Name: "+rs.getString("ProductName")+", "); System.out.print("Customer Name: "+rs.getString("CustomerName")+", "); System.out.print("Dispatch Date: "+rs.getDate("DispatchDate")+", "); System.out.print("Delivery Time: "+rs.getTime("DeliveryTime")+", "); System.out.print("Price: "+rs.getInt("Price")+", "); System.out.print("Location: "+rs.getString("Location")); System.out.println(); } } }
輸出
Connection established...... Rows deleted: 1 Contents of the table after deleting the records: Name: Key-Board, Customer Name: Raja, Dispatch Date: 2019-09-01, Delivery Time: 11:00:00, Price: 10001, Location: Hyderabad Name: Earphones, Customer Name: Roja, Dispatch Date: 2019-05-01, Delivery Time: 11:00:00, Price: 5000, Location: Vishakhapatnam Name: Mouse, Customer Name: Puja, Dispatch Date: 2019-03-01, Delivery Time: 10:59:59, Price: 6000, Location: Vijayawada Name: Mobile, Customer Name: Vanaja, Dispatch Date: 2019-03-01, Delivery Time: 10:10:52, Price: 12001, Location: Chennai
廣告