java当中JDBC当中请给出一个sql server的dataSou…

2019-10-08 09:17:06来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

java当中JDBC当中请给出一个sql server的dataSource的helloworld例子

 [学习笔记]

4. sql server的dataSource的helloworld:

import java.sql.*;
import javax.sql.*;
import net.sourceforge.jtds.jdbcx.*;

public class SimpleDataSource{
public static void main(String[] args){
try{
JtdsDataSource ds = new JtdsDataSource();
ds.setServerName("localhost");
ds.setDatabaseName("pubs");
ds.setUser("sa");
ds.setPassword("");

Connection con = ds.getConnection();
Statement s = con.createStatement();
ResultSet rs = s.executeQuery("select count(*) from authors");
if(rs.next())
System.out.println("There are " + rs.getInt(1) + " records in authors table.");
}catch(Exception e){

}
}
}

文章转载自原文:https://blog.csdn.net/qq_43650923/article/details/100742896


原文链接:https://www.cnblogs.com/haima1949/p/11624850.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Java自学-数字与字符串 操纵字符串

下一篇:Vagrant定制个性化CentOS7虚拟机模板