[求助]数据库插入语句为什么没成功?
下面是我写的向数据库插入数据的代码,编译和执行都没有错误.但是我查看表时却没有发现我插入的记录.这是为什么?帮帮忙
import java.sql.*;
public class Demo {
protected final String driver="sun.jdbc.odbc.JdbcOdbcDriver";
protected final String source="jdbc:odbc:link";
protected Connection connection;
protected Statement statement;
public void mm()throws SQLException{
Class.forName(driver);
//创建一个用于执行简单SQL的语句对象
statement=connection.createStatement();
String sql="INSERT INTO link(id,name) VALUES(10,'ttom')";
statement.executeUpdate(sql);
statement.close();
}
public static void main(String[] args) throws SQLException{
Demo m=new Demo();
m.mm();
}
}