classnotfoundexception sun.jdbc.odbc.jdbcodbcdriver和mapping_data_source :: init错误:找不到文件

时间:2014-05-06 13:51:09

标签: java

//java program  to insert a row into a table using Statement![the output of the program is shown in the image provided by the link given at the bottom

import java.io.*;
import java.lang.*;
import java.sql.*;

class stmtinserts
{

    public static void main(String a[])throws Exception
    {
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        Connection con=DriverManager.getConnection("jdbc:odbc:test");
        String s = "insert into cricket values(10, 'name1', 10000)";
        Statement st=con.createStatement();
        int i = st.executeUpdate(s);

        if(i > 0)
            System.out.println("data inserted ");
        else
            System.out.println("data is not inserted");

        st.close();
        con.close();

    }
}

Click this link to view the image

我的操作系统是Windows 7,32位系统。 java版本是1.8.0_05。

还给我关于错误“mapping_data_source :: init error:file not found”的建议。 当我输入java或javac时,我发现了这个错误。

任何人的帮助都表示赞赏。谢谢。

0 个答案:

没有答案