我正在创建一个方法,它将接受用户的一些值并将它们发送到SQL server中的存储过程。几天前代码工作正常我现在收到这些错误,我不知道如何处理。在我运行代码'java.lang.ClassNotFoundException'后,当我点击java.lang.Class.forName0(Native Method)时,它表明源附件不包含Class.class的源代码。最后我看到的另一个错误让我回到了代码中的一行
void addcustomer(int trn,String Lname,String Fname,String Mname,String Mstatus, String Dob,String Email,String tel,String PA,String MA,String Eng_num, int Emp_id,String dateP,String PartO)
{
String ConnectionUrl = "jdbc:sqlserver://localhost:1433;"+"databaseName=car_inventory;integratedSecurity=true;"; //creating a connection string
// Declare the JDBC objects
Connection Conn=null;
Statement stmt=null;
ResultSet rs=null;
try
{
//establish connection
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Conn=DriverManager.getConnection("jdbc:odbc:dbase2");/*This is the line where the last error points to*/
CallableStatement sp = Conn.prepareCall("{call addcustomer(?,?,?,?,?,?,?,?,?,?,?,?,?)}");
sp.setInt(1,trn);
sp.setString(2,Lname);
sp.setString(3,Fname);
sp.setString(4,Mname);
sp.setString(5,Mstatus);
sp.setString(6,Dob);
sp.setString(7,Email);
sp.setString(8,tel);
sp.setString(9,PA);
sp.setString(10,MA);
sp.setString(11,Eng_num);
sp.setInt(12,Emp_id);
sp.setString(13,dateP);
sp.setString(14,PartO);
}//end of try
catch(Exception e)
{
e.printStackTrace();
}//end of catch
finally
{
if (rs != null)
try
{
rs.close();
}
catch(Exception e)
{
}
if (stmt != null)
try
{
stmt.close();
}
catch(Exception e)
{
}
if (Conn != null)
try
{
Conn.close();
}
catch(Exception e)
{
}
}//end of finally
}//end of addcustomer
答案 0 :(得分:0)
当JVM尝试加载类并且类在类路径中不可用时抛出ClassNotFoundException