<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[caofuwei的专栏]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/caofuwei</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; caofuwei]]></copyright><item><title><![CDATA[C3P0的详细配置说明（com.mchange.v2.c3p0.ComboPooledDataSource）]]></title><link>https://blog.csdn.net/caofuwei/article/details/41442891</link><guid>https://blog.csdn.net/caofuwei/article/details/41442891</guid><author>caofuwei</author><pubDate>Mon, 24 Nov 2014 11:57:48 +0800</pubDate><description><![CDATA[C3P0是一个开放源代码的JDBC连接池，它在lib目录中与Hibernate一起发布,包括了实现jdbc3和jdbc2扩展规范说明的Connection 和Statement 池的DataSources 对象。]]></description><category></category></item><item><title><![CDATA[js自定义对象（二）]]></title><link>https://blog.csdn.net/caofuwei/article/details/25963813</link><guid>https://blog.csdn.net/caofuwei/article/details/25963813</guid><author>caofuwei</author><pubDate>Fri, 16 May 2014 11:23:41 +0800</pubDate><description><![CDATA[一，概述 


在Java语言中，我们可以定义自己的类，并根据这些类创建对象来使用，在Javascript中，我们也可以定义自己的类，例如定


义User类、Hashtable类等等。 


目前在Javascript中，已经存在一些标准的类，例如Date、Array、RegExp、String、Math、Number等等，这为我们编程提供


了许多方便。但对于复杂的客]]></description><category></category></item><item><title><![CDATA[js自定义类和对象（一）]]></title><link>https://blog.csdn.net/caofuwei/article/details/25962625</link><guid>https://blog.csdn.net/caofuwei/article/details/25962625</guid><author>caofuwei</author><pubDate>Fri, 16 May 2014 11:17:57 +0800</pubDate><description><![CDATA[工厂方式



function createObject(name){

       var p = new Object();

       p.name=name;

       p.say = function(){alert(p.name+'ff');}

       return p;

}

var p1 = createObject("p1"]]></description><category></category></item><item><title><![CDATA[在WEB中，Quartz使用配置文件调用]]></title><link>https://blog.csdn.net/caofuwei/article/details/24968817</link><guid>https://blog.csdn.net/caofuwei/article/details/24968817</guid><author>caofuwei</author><pubDate>Sun, 04 May 2014 11:28:24 +0800</pubDate><description><![CDATA[两个配置文件，一个properties和一个xml

properties:]]></description><category></category></item><item><title><![CDATA[定时任务 Quartz调度(采用配置文件)]]></title><link>https://blog.csdn.net/caofuwei/article/details/24965193</link><guid>https://blog.csdn.net/caofuwei/article/details/24965193</guid><author>caofuwei</author><pubDate>Sun, 04 May 2014 10:57:37 +0800</pubDate><description><![CDATA[1、所需的第三方包

commons-be]]></description><category></category></item><item><title><![CDATA[WebBrowser.ExecWB的完整说明]]></title><link>https://blog.csdn.net/caofuwei/article/details/21529257</link><guid>https://blog.csdn.net/caofuwei/article/details/21529257</guid><author>caofuwei</author><pubDate>Wed, 19 Mar 2014 14:18:42 +0800</pubDate><description><![CDATA[WebBrowser组件的execWB方法

1. 

2. 调用方法:
WebBrowser.ExecWB nCmdID, nCmdExecOpt, [pvaIn], [pvaOut]

3. 参数说明:
(a).nCmdID 
OLECMDID_OPEN = 1, 
OLECMDID_NEW = 2, 
OLECMDID_SAVE = 3, 
OLECMDID_SAVE]]></description><category></category></item><item><title><![CDATA[DBCP与c3p0__连接池参数详细说明]]></title><link>https://blog.csdn.net/caofuwei/article/details/11961483</link><guid>https://blog.csdn.net/caofuwei/article/details/11961483</guid><author>caofuwei</author><pubDate>Tue, 24 Sep 2013 09:26:43 +0800</pubDate><description><![CDATA[dbcp:
	driverClassName
	url
	username
	password
上面四个分别是驱动,连接字符串,用户名和密码
maxActive 连接池支持的最大连接数
maxIdle 连接池中最多可空闲maxIdle个连接
minIdle 连接池中最少空闲maxIdle个连接
initialSize 初始化连接数目
maxWait 连接池中连接用完时,新的请求等待时间,毫秒]]></description><category></category></item><item><title><![CDATA[详解Java解析XML的四种方法]]></title><link>https://blog.csdn.net/caofuwei/article/details/11629057</link><guid>https://blog.csdn.net/caofuwei/article/details/11629057</guid><author>caofuwei</author><pubDate>Fri, 13 Sep 2013 09:58:11 +0800</pubDate><description><![CDATA[XML现在已经成为一种通用的数据交换格式,它的平台无关性,语言无关性,系统无关性,给数据集成与交互带来了极大的方便。对于XML本身的语法知识与技术细节,需要阅读相关的技术文献,这里面包括的内容有DOM(Document Object Model),DTD(Document Type Definition),SAX(Simple API for XML),XSD(Xml Schema Definit]]></description><category></category></item><item><title><![CDATA[JS  Window对象描述]]></title><link>https://blog.csdn.net/caofuwei/article/details/11599209</link><guid>https://blog.csdn.net/caofuwei/article/details/11599209</guid><author>caofuwei</author><pubDate>Thu, 12 Sep 2013 12:50:48 +0800</pubDate><description><![CDATA[Window对象表示一个浏览器窗口或一个框架。在客户端JavaScript中，Window对象是全局对象，所有的表达式都在当前的环境中计算。也就是说，要引用当前窗口根本不需要特殊的语法，可以把那个窗口的属性作为全局变量来使用。例如，可以只写document，而不必写window.document。
 同样，可以把当前窗口对象的方法当作函数来使用，如只写alert()，而不必写Window.ale]]></description><category></category></item><item><title><![CDATA[servlet中使用session]]></title><link>https://blog.csdn.net/caofuwei/article/details/11030001</link><guid>https://blog.csdn.net/caofuwei/article/details/11030001</guid><author>caofuwei</author><pubDate>Wed, 04 Sep 2013 09:55:18 +0800</pubDate><description><![CDATA[众所周知，在JSP页面上可直接通过session.setAttribute(name,object)设置session,可如果想在servlet使用session 的话，就和在JSP有点区别了。在servlet中通过HttpSession session=request.getSession(boolean create);得到一个session对象（准确来说，得到的应该是一个HttpSessio]]></description><category></category></item><item><title><![CDATA[jdbc connection c3p0详细配置]]></title><link>https://blog.csdn.net/caofuwei/article/details/10975041</link><guid>https://blog.csdn.net/caofuwei/article/details/10975041</guid><author>caofuwei</author><pubDate>Tue, 03 Sep 2013 13:33:25 +0800</pubDate><description><![CDATA[官方文档 : 
http://www.mchange.com/projects/c3p0/index.html

	
		
		3
		
		30
		
		1000
		
		false
		
		Test
		
		false
		
		100
		
		
		
		null
		
		false
		
		60
		
		3
		
		60
		
		15
		
		100]]></description><category></category></item><item><title><![CDATA[用apache的dbcp数据库缓冲池]]></title><link>https://blog.csdn.net/caofuwei/article/details/10500365</link><guid>https://blog.csdn.net/caofuwei/article/details/10500365</guid><author>caofuwei</author><pubDate>Thu, 29 Aug 2013 11:30:19 +0800</pubDate><description><![CDATA[JDBC连接池参数：
    jdbc.initialSize=0       //初始化连接
    jdbc.maxActive=30     //连接池的最大数据库连接数，设为0表示无限制
    jdbc.maxIdle=20        //没有人用连接的时候，最大闲置的连接个数，设置为0时，表示没有限制。
    jdbc.maxWait=1000    //超时等待时间以毫]]></description><category></category></item><item><title><![CDATA[SQLServer查询表是否存在]]></title><link>https://blog.csdn.net/caofuwei/article/details/10399885</link><guid>https://blog.csdn.net/caofuwei/article/details/10399885</guid><author>caofuwei</author><pubDate>Tue, 27 Aug 2013 16:03:33 +0800</pubDate><description><![CDATA[查询表是否存在：
表名：“BookHotelInfo”， type = 'u' 查看是不是用户表
select * from sysobjects where id = object_id('BookHotelInfo') and type = 'u'
select * from sys.tables where name='BookHotelInfo' and type = 'u'
查询]]></description><category></category></item></channel></rss>