import java.sql.*;
public class jdbcodbc {
public static void main(String[] args) {
//jdbc-odbc的快捷方式
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");//数据库连接驱动
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}//对于jdbc-odbc来说,url表示数据源的名字
String url="jdbc:odbc:stuinfo";//数据源的名
try {//得到连接对象
Connection con=DriverManager.getConnection(url, "sa","mayi9129");//使用数据库,再使用那张表
String sql="delete stuinfo where stuid=3";//用命令修改数据表
//
String sql="insert into stuinfo values('7','老八','28')";
//
String sql="SELECT
* FROM stuinfo";//
Statement stmt=con.createStatement();//通过连接对象con得到语句对象
int row=stmt.executeUpdate(sql);//更新数据表
if(row>0)
{
System.out.print("执行成功");
}
else
{
System.out.print("执行失败");
}
stmt.close();
con.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
配好odbc就可以了,这就是模板