Java使用ODBC连接数据库

Java使用ODBC连接数据库

dbinfor.properties文件配置如下:

注意:dbinfor.properties文件在工程路径下面【不是src路径下面】
odbc_driver=sun.jdbc.odbc.JdbcOdbcDriver
#my_oracle_ODBC是我配置的ODBC数据源的名称 //下图中的Data Source Name
odbc_url=jdbc:odbc:my_oracle_ODBC

username=scott
password=tiger

数据源配置方法:

在win7下:控制面板\系统和安全\管理工具--->数据源



package oracle;

import java.io.FileInputStream;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

public class OracleODBC {
	private static Connection conn;
	private static PreparedStatement ps;
	private static ResultSet rs;
	private static String odbc_driver;
	private static String odbc_url;
	private static String username;
	private static String password;
	
	public static void main(String[] args) {
		// 测试
		String sql = "select * from emp";
		System.out.println("ODBC************");
		ResultSet rst = OracleODBC.executeQuery(sql, null);
		try {
			while(rst.next()){
				System.out.println(rst.getString("ename"));
			}
		} catch (Exception e) {
			e.printStackTrace();
		}finally{
			OracleODBC.close(OracleODBC.getConn(),OracleODBC.getPs(),rst);
		}
	}
	

	static{
		try {
			Map<String,String> map = get();
			odbc_driver  = map.get("odbc_driver");
			odbc_url = map.get("odbc_url");
			username = map.get("username");
			password = map.get("password");
			
			Class.forName(odbc_driver);
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		}
	}
	
	//初始化变量
	public static Map get(){
		Properties pp = new Properties();
		FileInputStream fis = null;
		Map<String,String> map = new HashMap<String, String>();
		try {
			fis = new FileInputStream("dbinfor.properties");//dbinfor.properties在工程路径下面
			pp.load(fis);
			odbc_driver = pp.getProperty("odbc_driver");
			odbc_url = pp.getProperty("odbc_url");
			username = pp.getProperty("username");
			password = pp.getProperty("password");
			map.put("odbc_driver", odbc_driver);
			map.put("odbc_url", odbc_url);
			map.put("username", username);
			map.put("password", password);
			
		} catch (Exception e) {
			e.printStackTrace();
		}
		return map;
	}
	
	//增删改方法
	public static void executeUpdate(String sql,String []parameters){
		try {
			conn = DriverManager.getConnection(odbc_url, username, password);
			ps = conn.prepareStatement(sql);
			if(parameters!=null){
				for(int i=0;i<parameters.length;i++){
					ps.setString(i+1, parameters[i]);
				}
			}
			ps.executeUpdate();
		} catch (Exception e) {
			e.printStackTrace();
			throw new RuntimeException(e.getMessage());
		}finally{
			OracleODBC.close(conn, ps, rs);
		}
		
	}
	
	//查询方法
	public static ResultSet executeQuery(String sql,String []parameters){
		try {
			conn = DriverManager.getConnection(odbc_url, username, password);
			ps = conn.prepareStatement(sql);
			if(parameters !=null){
				for(int i=0;i<parameters.length;i++){
					ps.setString(i+1, parameters[i]);
				}
			}
			//执行查询
			rs = ps.executeQuery();
			
		} catch (Exception e) {
			e.printStackTrace();
			throw new RuntimeException(e.getMessage());
		}finally{
			//关闭资源
			//SQLHelper.close(conn, ps, rs);
		}
		return rs;
	} 
	//关闭资源
	public static void close(Connection conn,Statement stmt,ResultSet rs){
		if(rs!=null){
			try {
				rs.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
			rs = null;
		}
		
		if(stmt!=null){
			try {
				stmt.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
			stmt = null;
		}
		
		if(conn!=null){
			try {
				conn.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
			conn=null;
		}
	}
	public static Connection getConn() {
		return conn;
	}

	public static PreparedStatement getPs() {
		return ps;
	}


	
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值