搜索资源列表
数据库连接池实现一
- 数据库应用,在许多软件系统中经常用到,是开发中大型系统不可缺少的辅助。但如果对数据库资源没有很好地管理(如:没有及时回收数据库的游标(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 ~
MySqlBaseDB
- 为MySql的数据库读取文件,可设数据库用户名及密码,默认为用户:root,密码:sa.可从ResultSet或statment开始读取-MySql database to read documents can be installed database user name and password, the default for users : root, Password : sa. ResultSet or from the statement reads
GreanConnectionDataBase
- Connection的代理类,Statement的代理类,ResultSet的代理类.-Connection agent category, Statement of Acting categories, ResultSet agent category.
数据库连接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{
SQLCESample
- wince环境下使用sqlce读取本地的sdf数据库文件,使用的是resultset-wince environment sqlce read local sdf database file, using a resultset
user
- 关于用户管理的模块。主要功能为管理员登陆后对用户进行添加,删除和修改操作。用到javabean连接数据库和执行sql语句、resultset显示数据以及session记录登陆状态。-On the user management module. Main function as an administrator after landing on the user add, delete and modify operations. JavaBean used to connect database
1s
- //JDBC驱动器名称(JDBC-ODBC桥) private String strDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver" //数据库的URL地址 private String strUrl = "jdbc:odbc:atm1" //指定要访问的数据库名称 private String strDBName = "atm1" //数据库用户名称 private String strUserName
HashTable
- HashTable实例 public class HashTable_msg { public HashTable_msg() { String sum_sql="select mobilenum,count(*) from SJSJ_Msg where (left(in_date,6)=(select left(CONVERT(varchar(12) , getdate(), 112 ),6)))group by mobilenum" Hashtable<
struts
- import java.sql.Connection import java.sql.ResultSet import java.sql.SQLException import java.sql.Statement import java.util.List -import java.util.List
ResultSet
- sqlce数据库访问技术,以及利用可视化工具进行快速绑定-sqlce database access
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 接口 =================================== * 包装查询结果的工具
ResultSet
- An interface for an object which represents a database table entry, returned as the result of the query to the database.
ResultSetMetaData
- Provides information about the columns returned in a ResultSet.
20
- Java小程序 有点意思 本例演示如何使用RowSet接口。RowSet继承ResultSet,比ResultSet更好用, * 是是JDK 1.5的新特征之一。-java applet Interesting This example demonstrates how to use the RowSet interface. RowSet inherit ResultSet, better than ResultSet, * is one of the new
mysql JDBC
- 基本的java JDBC操作,实现resultset类获取表单,对于新手来说是一个很好的体验