当前位置: 代码迷 >> Java Web开发 >> 数据库连接(送分)解决方法
  详细解决方案

数据库连接(送分)解决方法

热度:70   发布时间:2016-04-17 14:16:27.0
数据库连接(送分)
Connection   conn=   DriverManager.getConnection(String   url,Properties   info);
使用这种方法建立数据库连接时,其中参数Properties   info,要怎样赋值啊,谁能给个列子!

------解决方案--------------------
Properties props=new Properties();
props.put( "user ", "sss ");
props.put( "password ", "1234 ");
//props.put( "defaultRowPrefectch ", "30 ");
//props.put( "dufaultBatchValue ", "5 ");
Connection con=DriverManager.getConnection( "jdbc:oracle:thin:@hostsString ",props);
  相关解决方案