首页 > 编程 > Java > 正文

jtds1.1连接sqlserver2000测试示例

2019-11-26 15:39:48
字体:
来源:转载
供稿:网友

复制代码 代码如下:

public class TestSqlserverJtds {
 public static void main(String[] args) {
  Connection con=null;

        try
        {
            String driver="net.sourceforge.jtds.jdbc.Driver";
            String url="jdbc:jtds:sqlserver://192.168.0.15:1433;DatabaseName=test";
            Class.forName(driver).newInstance();
            System.out.println(" 连接开始。。。。。。");
            long starttime = System.currentTimeMillis();
            con =DriverManager.getConnection(url,"sa","123");
            long endtime = System.currentTimeMillis();
            System.out.println(" 连接成功 !Lost time:" + (endtime - starttime) / 1000 + "秒");

            con.close();
        } catch(Exception e) {
            e.printStackTrace();
        } finally{
         try {

          if(null != con){
           con.close();
          }
         } catch (SQLException e) {
    e.printStackTrace();
   }
        }
 }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表