巧用JDBC实现对MySQL的“增删改查”

作者:10933 时间:2008-12-31 15:12:00 

用JDBC实现对MySQL的“增删改查”:

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

import com.bean.NoticeBean;

public class JDBCTest {

/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

Connection conn=null;

Statement stmt=null;

ResultSet rs=null;

try {

String driverName="com.mysql.jdbc.Driver";

Class.forName(driverName);

String url="jdbc:mysql://localhost:3306/java?

useUnicode=true&characterEncoding=gb2312";

conn=DriverManager.getConnection(url,"root","root");

System.out.println("连接MySql成功!!!");

stmt=null;

rs=null;

String strSql=null;

NoticeBean bean=null;

String title=null;

String content=null;

try {

title="标题";

content="内容";

strSql="INSERT INTO notice(title,content) VALUES('"+title+"','"+content+"')";

stmt=conn.createStatement();

stmt.executeUpdate(strSql);

System.out.println("插入语句执行成功:"+strSql);

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

System.out.println("插入失败");

}

strSql="select * from notice";

stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,

ResultSet.CONCUR_READ_ONLY);

rs=stmt.executeQuery(strSql);

if(rs.next()){

int id=rs.getInt("id");

title =rs.getString("title");

content=rs.getString("content");

if(rs.next()){

bean=new NoticeBean(id,title,content);

}

System.out.println("notice第一行数据是"+bean.getId()+" "+bean.getTitle()

+" "+bean.getContent());

}

try {

strSql="delete from notice";

stmt=conn.createStatement();

stmt.executeUpdate(strSql);

System.out.println("删除完成");

} catch (RuntimeException e) {

// TODO Auto-generated catch block

e.printStackTrace();

System.out.println("删除失败");

}

} catch (ClassNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally{

try {

if(rs!=null){

rs.close();

rs=null;

}

if(stmt!=null){

stmt.close();

stmt=null;

}

if(conn!=null){

conn.close();

conn=null;

}

} catch (SQLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

}

标签:
0
投稿

猜你喜欢

  • matplotlib绘制鼠标的十字光标的实现(自定义方式,官方实例)

    2021-06-09 02:33:06
  • python文件的读取、写入与删除

    2022-01-21 21:17:12
  • MySql二进制连接方式详解

    2024-01-26 14:38:42
  • 带你深入了解Access数据库的4种安全方式

    2008-11-28 14:34:00
  • Python 自动控制原理 control的详细解说

    2023-04-17 09:53:45
  • MySQL数据库JDBC编程详解流程

    2024-01-15 09:39:55
  • OpenCV模板匹配matchTemplate的实现

    2021-08-09 15:51:51
  • Python跑循环时内存泄露的解决方法

    2023-07-18 08:18:22
  • python文件读取失败怎么处理

    2023-05-06 17:14:46
  • python中requests库session对象的妙用详解

    2021-10-30 14:42:58
  • chr(9)、chr(10)、chr(13)、chr(32)与特殊空格

    2009-07-03 15:26:00
  • MySQL中 and or 查询的优先级分析

    2024-01-12 13:53:50
  • python中yaml配置文件模块的使用详解

    2021-06-05 08:06:45
  • sql 常用技巧整理

    2011-11-03 17:10:14
  • Python astype(np.float)函数使用方法解析

    2021-02-23 17:28:16
  • sqlserver分页的两种写法分别介绍

    2024-01-24 15:58:18
  • python shell命令行中import多层目录下的模块操作

    2023-08-24 11:28:40
  • Mysql案例刨析事务隔离级别

    2024-01-14 00:35:47
  • 在PYQT5中QscrollArea(滚动条)的使用方法

    2023-03-07 06:29:51
  • 深入了解和应用Python 装饰器 @decorator

    2024-01-02 09:20:05
  • asp之家 网络编程 m.aspxhome.com