
JDBC
文章平均质量分 77
iloveflowerll
这个作者很懒,什么都没留下…
展开
-
JDBC学习笔记-----jdbc性能优化[转载]
jdbc程序的性能主要由两个因素决定,一是数据库本身的性质,另一个是与数据库相对独立的jdbc应用程序接口(api)的使用.这里说的是如何正确使用jdbc编程接口,以获得更好的性能. jdbc主要优化有: 1.选择正确的jdbc驱动程序 2.Connention的优化 使用连接池来管理Connection对象 3.Statement的优化 使...原创 2012-06-25 22:56:04 · 196 阅读 · 0 评论 -
JDBC basic
The JDBC ( Java Database Connectivity) API defines interfaces and classes for writing database applications in Java by making database connections. Using JDBC you can send SQL, PL/SQL statements to al...原创 2012-06-25 23:51:48 · 205 阅读 · 0 评论 -
Batch Insert In Java – JDBC
Let’s see how we can perform batch insert in Java using JDBC APIs. Although you might already knew this, I will try to explain the basic to a bit complex scenarios. In this note, we will see how we...原创 2012-07-10 11:00:11 · 244 阅读 · 0 评论