欢迎来到天天文库
浏览记录
ID:7905242
大小:478.00 KB
页数:27页
时间:2018-03-02
《数据库连接池的研究与实现 》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、源程序代码等全套设计联系QQ174320523各专业都有分类号:TP311.1UDC:D10621-408-(2007)5917-0密级:公开编号:2003031281成都信息工程学院学位论文数据库连接池的研究与实现论文作者姓名:xxx申请学位专业:计算机科学与技术申请学位类别:工学学士指导教师姓名(职称):xxxx论文提交日期:2007年06月10日第1页共19页数据库连接池的研究与实现摘要在基于JDBC的数据库实际应用开发中,对数据库连接的管理是一个重点也是一个难点,频繁对数据库的连接与关闭操作、多客户对数据库的并发访问,一定程度上决定了WEB系统的响应以及应用性能。使用数据库连接池方式
2、能对数据库的连接进行管理和维护,上层应用程序通过数据库连接池使用数据库资源能提升系统性能,充分利用系统资源。文章通过介绍、分析数据库连接池工作的基本原理,了解目前流行的WEB服务器在数据库连接池方面的使用现状后,总结了一些数据库连接池开发程序中容易忽略的问题。并在学习掌握了实现连接池的关键技术后给出了一个较为高效的连接池管理策略,在这种策略思想的指导下实际开发出一个数据库连接池模块,使得上层应用通过本连接池访问数据库资源变得相对高效和容易,从实际上论证了这种设计方案的可行性。关键词:连接池;数据库;JDBC;并发访问第1页共19页ResearchandimplementationoftheD
3、atabaseConnectionPoolAbstractInthepracticallyapplicationdevelopmentofdatabasebasedonJDBC,themanagementofdatabaseconnectionisakeypointandalsoadifficulty.TheresponseandperformanceoftheWEBsystemaredependedonfrequentlyconnecting,closingandmulti-useraccessinginacertainextent.UsingtheDatabaseConnectionPo
4、olcanprovidemanagementandmaintenanceforconnectionsofthedatabase.TheupperapplicationsmayaccessthedatabaserecourseviatheDatabaseConnectionPool,inordertoupgradesystemperformanceandfullyutilizethesystemrecourse.ThisarticlesummarizessomeissueswhichareeasilyignoredintheapplicationdevelopmentoftheDatabase
5、ConnectionPoolbythewayofintroducing,analyzingthebasaltheoryoftheDatabaseConnectionPoolandcomprehendingtheusingsituationoftheDatabaseConnectionPoolonthepopularWEBservers.Besides,IestablishedacomparativelyhighlyeffectivepolicyoftheConnectionPoolmanagementafterhavinglearnedandcomprehendedkeytechniqueo
6、fimplementingtheConnectivityPool,andactuallyhaddevelopedaDatabaseConnectionPoolmoduleundertheguidanceofthatpolicy,causingtheaccessofsystemresourcebytheupperapplicationsviacurrentConnectivityPoolbecomingrelativelyhighlyeffectiveandeasy,demonstratedthefeasibilityofthisdesignprojectinpractice.Keywords
7、:DatabaseConnectionPool;Database;JDBC;Concurrenceaccess第1页共19页1引言1.1课题背景随着信息技术的高速发展与广泛应用,数据库技术在信息技术领域中的位置越来越重要。传统的开发模式是:首先在主程序(如Servlet、Beans)中建立数据库连接;然后进行SQL操作,对数据库中的对象进行查询、修改和删除等;最后断开数据库连接。使用这种开发模式,对于一个简单
此文档下载收益归作者所有