码迷,mamicode.com
首页 > 数据库 > 详细

给出一个SQLServer DataSource 数据源单态模式的例子?

时间:2018-09-26 19:05:16      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:cat   span   vat   ==   cal   name   localhost   视频下载   content   

5.SQLServer DataSource and SingleTon:(视频下载) (全部书籍)
import net.sourceforge.jtds.jdbcx.*;
import java.sql.*;
import javax.sql.*;
public class SqlserverSingletonDataSource {
static private JtdsDataSource ds;
private Connection con;
private SqlserverSingletonDataSource() {

try {
ds = new JtdsDataSource();
ds.setServerName("localhost");
ds.setDatabaseName("pubs");
ds.setUser("sa");
ds.setPassword("");
}
catch (Exception e) {
}
}

public static Connection getConnection() throws Exception {
if (ds == null) {
new SqlserverSingletonDataSource();
}
Connection con =null;
try {

详情请见:

http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner10_web.html#SQLServerDataSourceandSingleTon

给出一个SQLServer DataSource 数据源单态模式的例子?

标签:cat   span   vat   ==   cal   name   localhost   视频下载   content   

原文地址:https://www.cnblogs.com/mark-to-win/p/9708729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!