欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-10-27 08:57:22
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){

}
}
}

文章转载自原文: