-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 に答える