-1

这是我的代码

import java.sql.*;
import java.util.Scanner;
class  AccountDeletionApplication
{
    public static void main(String[] args) throws ClassNotFoundException,SQLException 
    {
        Scanner s=new Scanner(System.in);
    System.out.println("Enter the Acc no:");
    int ano=s.nextInt();
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","scott","tiger");
    Statement st=con.createStatement();
    int n=st.executeUpdate("delete from ACCOUNT1 where ACCNO="+ano);
    if(n==1)
        System.out.println("account deleted succesfully");
    else
        System.out.println("account doesnt exist");
    st.close();
    con.close();
    }
}
4

1 回答 1

0

请发布整个堆栈跟踪,但很可能您的驱动程序不在类路径上。它不随 JVM 一起提供。去这里下载它,并将它添加到你的类路径中。

于 2013-10-04T15:08:09.257 回答