在Java中如何对数据库中的数据进行 *** 作?

在Java中如何对数据库中的数据进行 *** 作?,第1张

//此类为连接数据库并进行数据库的 *** 作\x0d\x0aimportjava.sql.Connection\x0d\x0aimportjava.sql.DriverManager\x0d\x0aimportjava.sql.ResultSet\x0d\x0aimportjava.sql.SQLException\x0d\x0aimportjava.sql.Statement\x0d\x0apublicclassConn{\x0d\x0aprivatestaticConnectionconn=null\x0d\x0aprivatestaticStatementst=null\x0d\x0aprivatestaticResultSetrs=null\x0d\x0a//建立数据库的连接\x0d\x0apublicConn(){\x0d\x0aStringurl="jdbc:sqlserver://localhost:1433databaseName=ZYGX"\x0d\x0aStringuser="sa"\x0d\x0aStringpassword="123"\x0d\x0atry{\x0d\x0aClass.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver")\x0d\x0aconn=DriverManager.getConnection(url,user,password)\x0d\x0ast=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY)\x0d\x0a}catch(ClassNotFoundExceptione){\x0d\x0ae.printStackTrace()\x0d\x0a}catch(SQLExceptione){\x0d\x0ae.printStackTrace()\x0d\x0a}\x0d\x0a}\x0d\x0a\x0d\x0a//通过不同的sql语句,得到相应Resultset结果集\x0d\x0apublicResultSetgetRs(Stringsql){\x0d\x0atry{\x0d\x0ars=st.executeQuery(sql)\x0d\x0a}catch(SQLExceptione){\x0d\x0ae.printStackTrace()\x0d\x0a}\x0d\x0areturnrs\x0d\x0a}\x0d\x0a//根据不同的sql语句,执行数据库的更新 *** 作\x0d\x0apublicintupdata(Stringsql){\x0d\x0aintnum=0\x0d\x0atry{\x0d\x0anum=st.executeUpdate(sql)\x0d\x0a}catch(SQLExceptione){\x0d\x0ae.printStackTrace()\x0d\x0a}\x0d\x0areturnnum\x0d\x0a}\x0d\x0a//关闭数据库连接相应的资源\x0d\x0apublicvoidclose(){\x0d\x0atry{\x0d\x0aif(rs!=null){\x0d\x0ars.close()\x0d\x0ars=null\x0d\x0a}\x0d\x0aif(st!=null){\x0d\x0ast.close()\x0d\x0ast=null\x0d\x0a}\x0d\x0aif(conn!=null){\x0d\x0aconn.close()\x0d\x0aconn=null\x0d\x0a}\x0d\x0a}catch(SQLExceptione){\x0d\x0ae.printStackTrace()\x0d\x0a}\x0d\x0a}\x0d\x0a}\x0d\x0a----------------------------------------------------------------------\x0d\x0a//可以对button里添加动作按钮:\x0d\x0afinalJButtonbutton=newJButton()\x0d\x0abutton.addActionListener(newActionListener(){\x0d\x0apublicvoidactionPerformed(finalActionEvente){\x0d\x0aConnconn=newConn()\x0d\x0aStringsql1="select*fromaawherename='"+name+"'"//按name值查找\x0d\x0aResultSetrs=conn.getRs(sql1)\x0d\x0atry{\x0d\x0awhile(rs.next()){\x0d\x0aintn=rs.getString("type")\x0d\x0a}\x0d\x0a}catch(SQLExceptione){\x0d\x0ae.printStackTrace()\x0d\x0a}\x0d\x0aStringname=textField.getText()\x0d\x0aStringsql="updateaasettittle='"+name+"'"//从aa表将title字段的值改成textField里的name值\x0d\x0aStringsql2="deletefromaawherename='"+name+"'"//从aa表将按取得name的值删除该行数据\x0d\x0aStringsql3="insertintoaa(name,uname)values('"+name+"','"')"//将name,uname值新增到aa表\x0d\x0aif(conn.update(sql)==1){\x0d\x0aSystem.out.print("修改成功")\x0d\x0a}\x0d\x0aif(conn.update(sql2)==1){\x0d\x0aSystem.out.print("删除成功")\x0d\x0a}\x0d\x0aif(conn.update(sql3)==1){\x0d\x0aSystem.out.print("新增成功")\x0d\x0a}\x0d\x0a}\x0d\x0a})

创建一个以JDBC连接数据库的程序,包含7个步骤: \x0d\x0a 1、加载JDBC驱动程序: \x0d\x0a在连接数据库之前,首先要加载想要连接的数据库的驱动到JVM(Java虚拟机), \x0d\x0a这通过java.lang.Class类的静态方法forName(String className)实现。 \x0d\x0a例如: \x0d\x0atry{ \x0d\x0a//加载MySql的驱动类 \x0d\x0aClass.forName("com.mysql.jdbc.Driver") \x0d\x0a}catch(ClassNotFoundException e){ \x0d\x0aSystem.out.println("找不到驱动程序类 ,加载驱动失败!") \x0d\x0ae.printStackTrace() \x0d\x0a} \x0d\x0a 成功加载后,会将Driver类的实例注册到DriverManager类中。 \x0d\x0a 2、提供JDBC连接的URL \x0d\x0a •连接URL定义了连接数据库时的协议、子协议、数据源标识。 \x0d\x0a•书写形式:协议:子协议:数据源标识 \x0d\x0a协议:在JDBC中总是以jdbc开始 \x0d\x0a子协议:是桥连接的驱动程序或是数据库管理系统名称。 \x0d\x0a数据源标识:标记找到数据库来源的地址与连接端口。 \x0d\x0a例如:(MySql的连接URL) \x0d\x0ajdbc:mysql: \x0d\x0a//localhost:3306/test?useUnicode=true&characterEncoding=gbk \x0d\x0a useUnicode=true:表示使用Unicode字符集。如果characterEncoding设置为 \x0d\x0a gb2312或GBK,本参数必须设置为true 。characterEncoding=gbk:字符编码方式。 \x0d\x0a 3、创建数据库的连接 \x0d\x0a•要连接数据库,需要向java.sql.DriverManager请求并获得Connection对象, \x0d\x0a 该对象就代表一个数据库的连接。 \x0d\x0a•使用DriverManager的getConnectin(String url , String username ,\x0d\x0aString password )方法传入指定的欲连接的数据库的路径、数据库的用户名和 \x0d\x0a 密码来获得。 \x0d\x0a 例如: \x0d\x0a //连接MySql数据库,用户名和密码都是root \x0d\x0a String url = "jdbc:mysql://localhost:3306/test"\x0d\x0a String username = "root" \x0d\x0a String password = "root" \x0d\x0a try{ \x0d\x0aConnection con =\x0d\x0a DriverManager.getConnection(url , username , password ) \x0d\x0a }catch(SQLException se){ \x0d\x0aSystem.out.println("数据库连接失败!") \x0d\x0ase.printStackTrace() \x0d\x0a } \x0d\x0a 4、创建一个Statement \x0d\x0a•要执行SQL语句,必须获得java.sql.Statement实例,Statement实例分为以下3 \x0d\x0a 种类型: \x0d\x0a 1、执行静态SQL语句。通常通过Statement实例实现。 \x0d\x0a 2、执行动态SQL语句。通常通过PreparedStatement实例实现。 \x0d\x0a 3、执行数据库存储过程。通常通过CallableStatement实例实现。 \x0d\x0a具体的实现方式: \x0d\x0aStatement stmt = con.createStatement() \x0d\x0a PreparedStatement pstmt = con.prepareStatement(sql) \x0d\x0a CallableStatement cstmt =\x0d\x0acon.prepareCall("{CALL demoSp(? , ?)}") \x0d\x0a 5、执行SQL语句 \x0d\x0aStatement接口提供了三种执行SQL语句的方法:executeQuery 、executeUpdate \x0d\x0a 和execute \x0d\x0a1、ResultSet executeQuery(String sqlString):执行查询数据库的SQL语句 \x0d\x0a,返回一个结果集(ResultSet)对象。 \x0d\x0a 2、int executeUpdate(String sqlString):用于执行INSERT、UPDATE或 \x0d\x0aDELETE语句以及SQL DDL语句,如:CREATE TABLE和DROP TABLE等 \x0d\x0a 3、execute(sqlString):用于执行返回多个结果集、多个更新计数或二者组合的 \x0d\x0a语句。 \x0d\x0a 具体实现的代码: \x0d\x0a ResultSet rs = stmt.executeQuery("SELECT * FROM ...") \x0d\x0aint rows = stmt.executeUpdate("INSERT INTO ...") \x0d\x0aboolean flag = stmt.execute(String sql) \x0d\x0a 6、处理结果 \x0d\x0a两种情况: \x0d\x0a 1、执行更新返回的是本次 *** 作影响到的记录数。 \x0d\x0a 2、执行查询返回的结果是一个ResultSet对象。 \x0d\x0a• ResultSet包含符合SQL语句中条件的所有行,并且它通过一套get方法提供了对这些 \x0d\x0a 行中数据的访问。 \x0d\x0a• 使用结果集(ResultSet)对象的访问方法获取数据: \x0d\x0a while(rs.next()){ \x0d\x0a String name = rs.getString("name") \x0d\x0aString pass = rs.getString(1) // 此方法比较高效 \x0d\x0a } \x0d\x0a(列是从左到右编号的,并且从列1开始) \x0d\x0a 7、关闭JDBC对象\x0d\x0a *** 作完成以后要把所有使用的JDBC对象全都关闭,以释放JDBC资源,关闭顺序和声 \x0d\x0a 明顺序相反: \x0d\x0a 1、关闭记录集 \x0d\x0a 2、关闭声明 \x0d\x0a 3、关闭连接对象 \x0d\x0a if(rs != null){ // 关闭记录集 \x0d\x0atry{ \x0d\x0ars.close() \x0d\x0a}catch(SQLException e){ \x0d\x0ae.printStackTrace() \x0d\x0a} \x0d\x0a } \x0d\x0a if(stmt != null){ // 关闭声明 \x0d\x0atry{ \x0d\x0astmt.close() \x0d\x0a}catch(SQLException e){ \x0d\x0ae.printStackTrace() \x0d\x0a} \x0d\x0a } \x0d\x0a if(conn != null){ // 关闭连接对象 \x0d\x0a try{ \x0d\x0aconn.close() \x0d\x0a }catch(SQLException e){ \x0d\x0ae.printStackTrace() \x0d\x0a } \x0d\x0a }

JDBC是java数据库连接技术的简称,它提供了连接各种数据库的能力,这便使程序的可维护性和可扩展性大大的提高了.JDBC连接数据库常见的驱动方式有两种,一种是jdbc-odbc即桥连另外一种是纯java驱动.一般在做java开发的时候用第二种.so前一种我就不说了,纯java驱动方式连接步骤如下:

1.先把一个jdbc的jar包导入到项目(用MyEclipse开发)的lib中.

2.代码如下:

[c-sharp] view plain copy

import java.sql.*

/**

* 连接数据库帮助类

* @author Administrator

*

*/

public class BaseDao {

private static final String DRIVER="com.microsoft.sqlserver.jdbc.SQLServerDriver"

private static final String URL = "jdbc:sqlserver://localhost:1433DatabaseName=LibraryManageSystem"

private static final String USERNAME="sa"

private static final String PASSWORD="sa"

/**

* 连接数据库

* @return 数据库连接对象

* @throws ClassNotFoundException

* @throws SQLException

*/

public Connection getConn()throws ClassNotFoundException,SQLException{

Class.forName(DRIVER)

Connection conn = DriverManager.getConnection(URL,USERNAME,PASSWORD)

return conn

}

/**

* 释放资源

* @param conn

* @param pstmt

* @param rs

* @throws SQLException

*/

public void closeAll(Connection conn,PreparedStatement pstmt,ResultSet rs)throws SQLException{

if(rs!=null){

rs.close()

}

if(pstmt!=null){

pstmt.close()

}

if(conn!=null){

conn.close()

}

}

/**

* 执行SQL语句,可以进行增、删、改的 *** 作

* @param sql

* @return 影响条数

* @throws ClassNotFoundException

* @throws SQLException

*/

public int executeSQL(String sql)throws ClassNotFoundException,SQLException{

Connection conn = this.getConn()

PreparedStatement pstmt = conn.prepareStatement(sql)

int number = pstmt.executeUpdate()

this.closeAll(conn, pstmt, null)

return number

}

}

从代码知道首先吧jdbc驱动类装载java虚拟机中,即Class.forName(DRIVER)其次加载驱动并建立于数据库的连接Connection conn = DriverManager.getConnection(URL,USERNAME,PASSWORD)然后发送SQL语句并的到结果集.之后处理结果,最后要关闭数据库的连接,释放资源.当然我说的这样连接数据库的方式使用的软件是sql和MyEclipse.

使用配置文件来连接数据库,当然这样的连接需要进行一些配置.其实这样的连接用专业术语来说就是连接池,连接池是负责分配管理和释放数据库连接.它允许用用程序重复使用一个现有的数据库连接不再重复建立连接.释放空闲时间超过最大空闲时间的数据库连接以避免因为没有释放数据库而引起的数据库遗漏.

连接池的创建分为以下几个步骤:1.配置context.xml文件  这个文件是服务器(指tomcat)的一个conf文件夹中,拷贝出来放入项目的lib文件夹中,具体配置如下:

[c-sharp] view plain copy

<Resource name="jdbc/book" auth="Container" type="javax.sql.DataSource"

maxActive="100" maxIdle="20" maxWait="100" username="sa" password="sa"

driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"

url="jdbc:sqlserver://localhost:1433dataBaseName=book"

/>在config.xml文件中加入Resource标签,然后对数据库信息进行配置,当然这个数据库指的也是sqlserver有疑问可以qq757966892联系

之后把数据库的驱动包,这里指的是sql2005的包放入服务器的lib中,这样以后如果在你自己的机子上都不用在重新导入这个包了.

然后就是从MyEclipse中取得这样的连接从而对数据库进行一些 *** 作具体代码如下:

[c-sharp] view plain copy

package web.login.dao

import java.sql.Connection

import java.sql.PreparedStatement

import java.sql.ResultSet

import javax.naming.Context

import javax.naming.InitialContext

import javax.sql.DataSource

public class BaseDao {

protected Connection conn

protected PreparedStatement ps

protected ResultSet rs

protected String sql

public Connection getConn(){

try {

Context context=new InitialContext()

DataSource ds=(DataSource)context.lookup("java:comp/env/jdbc/user")

return ds.getConnection()

} catch (Exception e) {

e.printStackTrace()

return null

}

}

public void closeAll(Connection conn,PreparedStatement ps,ResultSet rs){

try {

if(rs!=null){

rs.close()

rs=null

}

if(ps!=null){

ps.close()

ps=null

}

if(conn!=null){

conn.close()

conn=null

}

} catch (Exception e) {

e.printStackTrace()

}

}

}

之后便可以建立业务类从而对数据库进行 *** 作.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9936194.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存