博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql dml 执行过程_Java之Mysql数据库DML语句执行
阅读量:4954 次
发布时间:2019-06-12

本文共 2638 字,大约阅读时间需要 8 分钟。

package py.db.com;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.SQLException;

import java.sql.Statement;

import com.mysql.jdbc.PreparedStatement;

public class DB_update {

public static void main(String[] args) {

//TestUpdate();

TestUpdatePre();

}

private static void TestUpdatePre() {

// TODO Auto-generated method stub

String url = "jdbc:mysql://localhost:3306/test";

String user = "root";

String password = "uplooking";

String sql1 = "update emp set sal = sal + ? where empno = 7900";

String sql2 = "select ename from emp where hiredate";

String sql3 = "update emp set sal = sal + 120 where empno = 7900";

Connection conn = null;

java.sql.PreparedStatement ps = null;

try {

//注册并载入数据库驱动

Class.forName("com.mysql.jdbc.Driver");

System.out.println("数据库驱动加载成功...");

//建立数据库连接

conn = DriverManager.getConnection(url, user, password);

System.out.println("数据库连接已建立...");

//准备一个处理器用来包装sql代码

ps = conn.prepareStatement(sql1);

//设置参数

ps.setInt(1, 250);

//执行sql代码

int rs = ps.executeUpdate();

if (rs == 1) {

System.out.println("数据库sql执行成功.");

}

} catch (ClassNotFoundException e) {

// TODO Auto-generated catch block

System.out.println("数据库驱动加载失败");

e.printStackTrace();

} catch (SQLException e) {

System.out.println("数据库通讯失败");

//e.printStackTrace();

} finally {

//关闭对象及连接

try {

ps.close();

conn.close();

} catch (Exception e) {

// TODO Auto-generated catch block

System.out.println("对象关闭失败");

//e.printStackTrace();

}

}

}

private static void TestUpdate() {

// TODO Auto-generated method stub

String url = "jdbc:mysql://localhost:3306/test";

String user = "root";

String password = "uplooking";

String sql1 = "select ename,empno from emp where empno=? and sal>?";

String sql2 = "select ename from emp where hiredate";

String sql3 = "update emp set sal = sal + 120 where empno = 7900";

Connection conn = null;

Statement stmt = null;

try {

//注册并载入数据库驱动

Class.forName("com.mysql.jdbc.Driver");

System.out.println("数据库驱动加载成功...");

//建立数据库连接

conn = DriverManager.getConnection(url, user, password);

System.out.println("数据库连接已建立...");

//准备一个处理器用来包装sql代码

stmt = conn.createStatement();

//执行sql代码

int rs = stmt.executeUpdate(sql3);

if (rs == 1) {

System.out.println("数据库sql执行成功.");

}

} catch (ClassNotFoundException e) {

// TODO Auto-generated catch block

System.out.println("数据库驱动加载失败");

e.printStackTrace();

} catch (SQLException e) {

System.out.println("数据库通讯失败");

//e.printStackTrace();

} finally {

//关闭对象及连接

try {

stmt.close();

conn.close();

} catch (Exception e) {

// TODO Auto-generated catch block

System.out.println("对象关闭失败");

//e.printStackTrace();

}

}

}

}

原文:http://woodywoodpecker.blog.51cto.com/4820467/1649730

转载地址:http://iwyhp.baihongyu.com/

你可能感兴趣的文章
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
流操作的规律
查看>>
Python基础学习15--异常的分类与处理
查看>>
javascript运算符的优先级
查看>>
React + Redux 入门(一):抛开 React 学 Redux
查看>>
13位时间戳和时间格式化转换,工具类
查看>>
vue router-link子级返回父级页面
查看>>
C# 通知机制 IObserver<T> 和 IObservable<T>
查看>>
Code of Conduct by jsFoundation
查看>>
div 只显示两行超出部分隐藏
查看>>
C#小练习ⅲ
查看>>
电源防反接保护电路
查看>>
stm32 堆和栈(stm32 Heap & Stack)
查看>>
SpringMVC从入门到精通之第三章
查看>>
arraylist
查看>>
zoj 1649 Rescue (BFS)(转载)
查看>>
2124: 等差子序列 - BZOJ
查看>>
字符串匹配算法综述
查看>>
Linux centosVMware shell 管道符和作业控制、shell变量、环境变量配置文件
查看>>