JDBC

JDBC Projects

JDBC Project 1

adplus-dvertising
JDBC Using Statement example – Delete all record
Previous Home Next
/* This program shows you how to delete all
rows from the database table using JDBC
Statement.*/

package r4r;
import java.sql.*;
public class DeleteAllData {
public static void main(String[] args) {
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con=DriverManager.getConnection
("jdbc:oracle:thin:@localhost:1521:xe","system","oracle");
Statement stmt=con.createStatement();
stmt.executeQuery("delete from user5 ");
System.out.println("successfully deleted");
con.close();
}
catch(Exception e)
{
System.out.println(e);
}
}
}

output:

successfully deleted
Previous Home Next