package news import java.sql.ResultSet import java.util.Vector public class News {
标签: import java ResultSet package
上传时间: 2014-01-01
上传用户:sclyutian
为MySql的数据库读取文件,可设数据库用户名及密码,默认为用户:root,密码:sa.可从ResultSet或statment开始读取
上传时间: 2014-12-03
上传用户:ywqaxiwang
Connection的代理类,Statement的代理类,ResultSet的代理类.
标签: Connection 代理
上传时间: 2015-06-13
上传用户:pompey
//JDBC驱动器名称(JDBC-ODBC桥) private String strDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver" //数据库的URL地址 private String strUrl = "jdbc:odbc:atm1" //指定要访问的数据库名称 private String strDBName = "atm1" //数据库用户名称 private String strUserName = "testUser" //数据库用户密码 private String strPassWord = "12345" //数据库连接对象,初始化为空 private Connection conTemp = null //连接的容器对象,初始化为空 private Statement stmtTemp = null //结果集对象,初始化为空 private ResultSet rsTemp = null //操作记录行数 private int intOperateNum
标签: JdbcOdbcDriver strDBDriver JDBC-ODBC private
上传时间: 2017-02-08
上传用户:songrui
wince环境下使用sqlce读取本地的sdf数据库文件,使用的是ResultSet
上传时间: 2017-03-09
上传用户:linlin
This is a Flex UIComponent that can be used 谋n a FLEX 3 mxml application as component written in action script 3.0, provides you to create items that cab be filled from an XML or Query ResultSet or etc. and is viewed in a container that can preview images and additional info like a store item and can be added to shopp谋ng chart , and also can be deleted from that shopp谋ng chart
标签: UIComponent application component written
上传时间: 2013-12-09
上传用户:dapangxie
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<String,Integer> ht = new Hashtable<String,Integer>() try{ ResultSet rs= DBAccess.getInstance().select(sum_sql) while(rs!=null) { ht.put(rs.getString(1),rs.getInt(2)) rs.next() } } catch (Exception e) { Logs.printError(e) } } }
标签: HashTable_msg public HashTable sum_sql
上传时间: 2014-12-07
上传用户:a6697238
public class guestbook{ String sDBDriver = "sun.jdbc.odbc.JdbcOdbcDriver" String sConnStr = "jdbc:odbc:guestbook" Connection conn = null ResultSet rs = null
标签: String JdbcOdbcDriver guestbook sDBDriver
上传时间: 2017-05-23
上传用户:qiaoyue