IBatis 配置各种数据库

IBatis 与各种数据库之间的配置在providers.config这个文件下。








   

    
  
    
  
  
  
  
  
  
  
  
  	
  
  

比如,我要配置PostgreSql 数据库,需要是SqlMap.config--database下配置该数据库的节点,整个SqlMap.config配置:

"1.0" encoding="utf-8"?>
"http://ibatis.apache.org/dataMapper"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
  
    "false"/>
    "true"/>
    "false"/>
  

  
    "PostgreSql2.2.5.0"/>
    "Test" connectionString="User ID=postgres; Password=release; Host=localhost; Port=5432; Database=Test;"/>
  

  
    "Study.xml"/>
  
View Code

 

你可能感兴趣的:(IBatis 配置各种数据库)