
database
文章平均质量分 68
Mavs
CSE
展开
-
advantages of connection poolings
Advantages of connection poolings引用http://yplsoft.iteye.com/blog/156697 对于一个简单的数据库应用,由于对于数据库的访问不是很频繁。这时可以简单地在需要访问数据库时,就新创建一个连接,用完后就关闭它,这样做也不会带来什么明显的性能上的开销。但是对于一个复杂的数据库应用,情况就完全不同了。频繁的建立、关闭连接,会极大的原创 2013-03-04 23:01:44 · 544 阅读 · 0 评论 -
stored procedures 存储过程介绍
什么是存储过程呢?The stored procedures is a set of sqls which have been compiled and stored in the web server. If you want to execute some sqls you can transmit the stored procedure to the server, and i原创 2013-03-04 22:50:46 · 1030 阅读 · 0 评论