//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
时,我发现了这个错误。
任何人的帮助都表示赞赏。谢谢。