Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1531332
  • 博文数量: 3500
  • 博客积分: 6000
  • 博客等级: 准将
  • 技术积分: 43870
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-03 20:31
文章分类

全部博文(3500)

文章存档

2008年(3500)

我的朋友

分类:

2008-05-04 20:25:43

一起学习
对于设置与windows下的jsp服务器,且系统较小时,使用access是一个比较好的选择,但是要使用access数据库一般要通过数据源。这里提供一种不用使用数据源用java直接连接数据源的方法。例子程序如下: import java.sql.*; public class Access { public static void main(String args[]) { try { String strurl="jdbc:odbc:driver={Microsoft Access Driver (*.mdb)};DBQ=books.mdb"; Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection conn=DriverManager.getConnection(strurl) ; Statement stmt=conn.createStatement(); ResultSet rs=stmt.executeQuery("select * from books"); if(rs.next()) { System.out.println(rs.getString("简介")); } }catch(Exception e) { System.out.println(e); } } } 可以看到只要在driver后面加上odbc驱动即可不用设置数据源,这种方法对其他小型数据库(如forpro)应该也适用。 下载本文示例代码


用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件用Jdbc-odbc直接连接access文件
阅读(170) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~