搜索资源列表
数据库连接池实现一
- 数据库应用,在许多软件系统中经常用到,是开发中大型系统不可缺少的辅助。但如果对数据库资源没有很好地管理(如:没有及时回收数据库的游标(ResultSet)、Statement、连接 (Connection)等资源),往往会直接导致系统的稳定。这类不稳定因素,不单单由数据库或者系统本身一方引起,只有系统正式使用后,随着流量、用户的增加,才会逐步显露。 -database applications, in many software systems often used, is developing
JdbcSql
- 在JTable中动态显示ResultSet对象 需要设置好数据源~-the dynamic J ResultSet object showed the need for better data sources ~
数据库连接bean_20050226111611
- Java 数据库连接Beanpackage GeneralJDBC import java.sql.* public class GeneralJDBC{ Connection conn Statement stmt ResultSet rs //构造方法:加载JDBD-ODBC驱动程序 public GeneralJDBC() { Connection conn = null Statement stmt = null ResultSet rs = null try{
ResultSet.instances.threaded.code
- Java多线程实例ResultSet代码ResultSet instances of multi-threaded Java code -ResultSet instances of multi-threaded Java code
ResultMysql
- 如何利用ResultSet接口获取数据库数据-How to use the ResultSet interface to access to database data
jdbc
- java.sql.Connection 接口 =================================== * 表示与数据库建立的抽象连接 java.sql.Statement 接口 =================================== * 用来执行(发送) sql 语句的工具 java.sql.ResultSet 接口 =================================== * 包装查询结果的工具