Location:
Search - dbutil
Search list
Description:
Platform: |
Size: 2197 |
Author: |
Hits:
Description: 数据库类,挺好用的-database category, the very good
Platform: |
Size: 2464 |
Author: 李星 |
Hits:
Description: 连接oracle数据库的操作方法
tatic String driverName=\"oracle.jdbc.driver.OracleDriver\"
static String dbUrl=\"jdbc:oracle:thin:@10.1.1.44:1521:DBAWEB\"
static String user=\"DBA_WEB\"
static String password=\"DBA_WEB\" -oracle database linking the operation tatic String driverNam e = "oracle.jdbc.driver.OracleDriver" stati c String dbUrl = "jdbc : oracle : thin : @ 10.1.1.44 : 1521 : DBAWEB "static String user =" DBA_WEB "static S tring password = "DBA_WEB"
Platform: |
Size: 1049 |
Author: 远风 |
Hits:
Description: 实现了从Google,和百度下载关键字搜索结果,并解析存入数据库,由于对机器性能有要求,解析程序不使用正则表达式。提供模板,使用模板生成最终文档,另外生成站点地图,方便Google抓取数据。
数据库方面采用dbutil,提供sql.txt
Platform: |
Size: 584771 |
Author: 长亭 |
Hits:
Description: 一个用JSP+JAVA BEAN 写的留言板WEB程序,用到了,JS验证组件,DBUTIL数据库组件,
Platform: |
Size: 738336 |
Author: ma |
Hits:
Description: 数据库类,挺好用的-database category, the very good
Platform: |
Size: 2048 |
Author: 李星 |
Hits:
Description: 连接oracle数据库的操作方法
tatic String driverName="oracle.jdbc.driver.OracleDriver"
static String dbUrl="jdbc:oracle:thin:@10.1.1.44:1521:DBAWEB"
static String user="DBA_WEB"
static String password="DBA_WEB" -oracle database linking the operation tatic String driverNam e = "oracle.jdbc.driver.OracleDriver" stati c String dbUrl = "jdbc : oracle : thin : @ 10.1.1.44 : 1521 : DBAWEB "static String user =" DBA_WEB "static S tring password = "DBA_WEB"
Platform: |
Size: 1024 |
Author: 远风 |
Hits:
Description: 实现了从Google,和百度下载关键字搜索结果,并解析存入数据库,由于对机器性能有要求,解析程序不使用正则表达式。提供模板,使用模板生成最终文档,另外生成站点地图,方便Google抓取数据。
数据库方面采用dbutil,提供sql.txt
Platform: |
Size: 584704 |
Author: 长亭 |
Hits:
Description: 一个用JSP+JAVA BEAN 写的留言板WEB程序,用到了,JS验证组件,DBUTIL数据库组件,-A used JSP+ JAVA BEAN Message Board WEB written procedures, use of, JS authentication components, DBUTIL database components,
Platform: |
Size: 738304 |
Author: ma |
Hits:
Description: 用java连接数据库的最基本入门代码,简单的连接数据库-a java code for access to a database
Platform: |
Size: 1024 |
Author: lxz |
Hits:
Description: 数据库查询操作,包括常用的数据库操作,查询,更新,分页等-db operation
Platform: |
Size: 3072 |
Author: whb |
Hits:
Description: dms数据挖掘的简单实现,data mining system,jdbc,oracle,等功能都有实现,过程简单清晰,一些自己做的工具类,例如DbUtil等,-data mining System use to studay,when i was a student ,i write it ,it is not perfect,if you use it,you have to going on finished,dms is importent in job,so pulese deeply studay it,jsp,mysql,servlet,oracle,jdbc,struts,struts2,xwork
Platform: |
Size: 19456 |
Author: apj |
Hits:
Description: java connect to database
Platform: |
Size: 76800 |
Author: mrzamani57 |
Hits:
Description: 在线交友系统,可以上传自己的头像,并且能够留言发帖。-package dao
import java.sql.Connection
import java.sql.PreparedStatement
import java.sql.ResultSet
import java.sql.Statement
import java.util.ArrayList
import java.util.List
import util.DBUtil
import entity.Picture
import entity.User
public class UserDAOJdbcImp implements UserDAO {
public void save(User user) throws Exception {
Connection con=DBUtil.open()
String sql="insert into w_user(username,name,password,age,sex,tel) values (?,?,?,?,?,?)"
PreparedStatement psmt=con.prepareStatement(sql)
psmt.setString(1, user.getUsername())
psmt.setString(2, user.getName())
psmt.setString(3, user.getPassword())
psmt.setInt(4, user.getAge())
psmt.setString(5, user.getSex())
psmt.setString(6, user.getTel())
psmt.executeUpdate()
DBUtil.close(con, psmt, null)
}
public List<User> findAll() throws Exception {
Connection con = null
Statement st = null
ResultSet rs =
Platform: |
Size: 60416 |
Author: wuhaizhou |
Hits:
Description: 这是一个简单的网上购物程序,把文件放置在tomcat里的webapps里面即可访问,此程序用到JSP和servlet,数据库方面用的是access,首先DBUtil构造了数据库连接底层文件,shopServlet则建立了购买删除等等的购物逻辑,cart则构造了虚拟购物车,等等功能都将在程序里以注视为读者解答.-This is a simple online shopping procedures, the documents placed in the webapps in the tomcat to access the inside, this program uses JSP and servlet, use the databases access, first constructed a database connection DBUtil the underlying file, shopServlet is established delete, and so shopping to buy the logic, cart is constructed of the virtual shopping cart, so features will be in the program to look for readers to answer.
Platform: |
Size: 22528 |
Author: 黎育玮 |
Hits:
Description: java编写的sqlserver数据库数据脚本导出工具,提供了数据库配置界面,并可导出数据库下的所有表的数据,将数据以insert values的格式导出-java script written in sqlserver database data export tool that provides database configuration interface, and can export the database, all under the table data, the data format to insert values derived
Platform: |
Size: 959488 |
Author: ccnu |
Hits:
Description: 有详细的文档,数据库技术Java,Oracle,RationRose 这是课程设计,高手不要打击。连接数据库的时候里面Dbutil.java下的IP,帐号,密码要记得改,不然连接不上
由于本来是用Sql建的数据后,后改为Oracle
就在没有写sql脚本了,建数据库按照文档里面的数据字典建就可以
-Detailed documentation, database technology Java, Oracle, RationRose this is course design, the master will not blow. When connecting to the database under which Dbutil.java IP, account numbers, passwords to remember to change, or connections are not as originally built with a Sql data, later renamed the Oracle sql script is not written in, and built in accordance with the document inside the database The data dictionary can be built to
Platform: |
Size: 7913472 |
Author: 邓楠轶 |
Hits:
Description: dbutils结合c3p0使用实例程序源文件-dbutils c3p0 demo
Platform: |
Size: 1693696 |
Author: 刘雷 |
Hits:
Description: DBUtil Java连接Mysql或Oracle数据库的封装工具-DBUtil Java or Oracle database connection Mysql packaging tool
Platform: |
Size: 1024 |
Author: jiangjun |
Hits:
Description: JAVA WEB 通用数据库连接 DBUtil.java-JAVA WEB Universal Database connection DBUtil.java
Platform: |
Size: 1024 |
Author: gugandepangzi |
Hits: