博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用mysql(6部曲)
阅读量:5055 次
发布时间:2019-06-12

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

 

使用properties文件配置数据库驱动,uri,用户名和密码;以便于日后更换数据库不用更改源代码;

driver=com.mysql.jdbc.Driveruri=jdbc:mysql://localhost:3306/day10user=rootpassword=root

 

1.注册驱动

1 public static Connection getConn() throws FileNotFoundException, IOException, ClassNotFoundException, SQLException{2         3         Class.forName(prop.getProperty("driver"));4         return DriverManager.getConnection(prop.getProperty("uri"),prop.getProperty("user"),prop.getProperty("password"));5         6         7     }

 

2.创建连接器

Connection conn = JDBCUtils.getConn();//Connection conn = DriverMananger("uri,user,password");

 

3.获取传输器

Statment stat = conn.createStatement();

 

5.利用传输器查询语句,并返回结果集

stat.executeUpdate(sql); 增删改

stat.executeQuery(sql);查询语句

6.关闭资源

1 public static void close(Connection conn,Statement stat,ResultSet rs){ 2          3             if(rs!=null){ 4                 try { 5                     rs.close(); 6                 } catch (SQLException e) { 7                     throw new RuntimeException(e); 8                      9                 }finally{10                     rs=null;11                 }12             }13             if(stat!=null){14                 try {15                     stat.close();16                 } catch (SQLException e) {17                     throw new RuntimeException(e);18                     19                 }finally{20                     stat=null;21                 }22             }23             if(conn!=null){24                 try {25                     conn.close();26                 } catch (SQLException e) {27                     throw new RuntimeException(e);28                     29                 }finally{30                     conn=null;31                 }32             }33     }

最后 使用预编译语句可防止SQL语句的注入问题,preparestatment

1 String sql = "select * from user where username=?and password =?";2 ps = conn.prepareStatement(sql);3 ps.setString(1, username);4 ps.setString(2, password);5 rs = ps.executeQuery();

 

转载于:https://www.cnblogs.com/dyyz1993/p/4100144.html

你可能感兴趣的文章
枚举的使用
查看>>
luogu4849 寻找宝藏 (cdq分治+dp)
查看>>
日志框架--(一)基础篇
查看>>
关于源程序到可运行程序的过程
查看>>
转载:mysql数据库密码忘记找回方法
查看>>
scratch少儿编程第一季——06、人在江湖混,没有背景怎么行。
查看>>
【贪心+DFS】D. Field expansion
查看>>
C# Async与Await的使用
查看>>
Mysql性能调优
查看>>
iOS基础-UIKit框架-多控制器管理-实例:qq界面框架
查看>>
IOS-每个程序员的编程之路上都应该看这11本书
查看>>
自定义tabbar(纯代码)
查看>>
小程序底部导航栏
查看>>
ibatis学习笔记
查看>>
18-ES6(1)
查看>>
poj1611 简单并查集
查看>>
Ubuntu 14.04下安装CUDA8.0
查看>>
跨平台开发 -- C# 使用 C/C++ 生成的动态链接库
查看>>
C# BS消息推送 SignalR介绍(一)
查看>>
WPF星空效果
查看>>