-
JDBC基本操作示例
- import java.sql.Connection;
- import java.sql.DriverManager;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
-
- public class TestJDBC {
-
- public static void main(String[] args) {
-
- Connection conn = null;
- PreparedStatement pstmt = null;
- ResultSet rs = null;
-
- try {
- Class.forName("com.mysql.jdbc.Driver");
-
- conn = DriverManager.getConnection("jdbc:mysql:///test", "root", "root");
-
- pstmt = conn.prepareStatement("select * from _user");
-
- rs = pstmt.executeQuery();
-
- while (rs.next()) {
- System.out.println(rs.getString("username"));
- }
- } catch (ClassNotFoundException e) {
- e.printStackTrace();
- } catch (SQLException e) {
- e.printStackTrace();
- } finally {
- if (rs != null) {
- try {
- rs.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
-
- if (pstmt != null) {
- try {
- rs.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
-
- if (conn != null) {
- try {
- rs.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- }
- }
- }
-
相关阅读:
BASE64
2020-2021-1 20201217《信息安全专业导论》第二周学习总结
师生关系20201217
2020-2021-1 20201217王菁<<信息安全专业导论>>第一周学习总结
作业正文(快速浏览教材提出问题)
自我介绍20201217王菁
罗马数字转阿拉伯数字(20201225张晓平)
20201225 张晓平《信息安全专业导论》第三周学习总结
20201225 张晓平《信息安全专业导论》第二周学习总结
我期待的师生关系
-
原文地址:https://www.cnblogs.com/Yxxxxx/p/6853703.html
Copyright © 2020-2023
润新知