DAO Java

DAO: Data Access Object

1.PgAdmin4-->new table

tablename: bookinfo

2.DAO

/Daotest/src/com/daotest/SampleDAO1.java

package com.daotest;

import java.sql.*;

import java.util.ArrayList;

public class SampleDAO1 {

private static final String RDB_DRIVER = "org.postgresql.Driver";

private static final String URL = "jdbc:postgresql://localhost:5432/postgres";

private static final String USER = "postgres";

private static final String PASSWORD = "******";

private static Connection getConnection() {

try {

Class.forName(RDB_DRIVER);

Connection con = DriverManager.getConnection(URL, USER, PASSWORD);

return con;

} catch (Exception e) {

throw new IllegalStateException(e);

}

}

public ArrayList<String> selectIsbnAll() {

Connection con = null;

Statement smt = null;

ArrayList<String> list = new ArrayList<String>();

String sql = "SELECT isbn FROM bookinfo ORDER BY isbn";

try {

con = SampleDAO1.getConnection();

smt = con.createStatement();

ResultSet rs = smt.executeQuery(sql);

while (rs.next()) {

list.add(rs.getString("isbn"));

}

} catch (SQLException e) {

System.out.println("Error!\n" + e);

} finally {

if (smt != null) {

try {

smt.close();

} catch (SQLException ignore) {

}

}

if (con != null) {

try {

con.close();

} catch (SQLException ignore) {

}

}

}

return list;

}

public ArrayList<String> selectTitleAll() {

Connection con = null;

Statement smt = null;

ArrayList<String> list = new ArrayList<String>();

String sql = "SELECT title FROM bookinfo ORDER BY isbn";

try {

con = SampleDAO1.getConnection();

smt = con.createStatement();

ResultSet rs = smt.executeQuery(sql);

while (rs.next()) {

list.add(rs.getString("title"));

}

} catch (SQLException e) {

System.out.println("Error!\n" + e);

} finally {

if (smt != null) {

try {

smt.close();

} catch (SQLException ignore) {

}

}

if (con != null) {

try {

con.close();

} catch (SQLException ignore) {

}

}

}

return list;

}

public ArrayList<Integer> selectPriceAll() {

Connection con = null;

Statement smt = null;

ArrayList<Integer> list = new ArrayList<Integer>();

String sql = "SELECT price FROM bookinfo ORDER BY isbn";

try {

con = SampleDAO1.getConnection();

smt = con.createStatement();

ResultSet rs = smt.executeQuery(sql);

while (rs.next()) {

list.add(rs.getInt("price"));

}

} catch (SQLException e) {

System.out.println("Error!\n" + e);

} finally {

if (smt != null) {

try {

smt.close();

} catch (SQLException ignore) {

}

}

if (con != null) {

try {

con.close();

} catch (SQLException ignore) {

}

}

}

return list;

}

public int insertBook(String isbn, String title, int price) {

Connection con = null;

Statement smt = null;

int rowsCount = 0;

String sql = "INSERT INTO bookinfo(isbn, title, price) " + "VALUES('" + isbn + "','" + title + "'," + price

  • ")";

try {

con = SampleDAO1.getConnection();

smt = con.createStatement();

rowsCount = smt.executeUpdate(sql);

}

catch (SQLException e) {

System.out.println("Error happened\n" + e);

} finally {

if (smt != null) {

try {

smt.close();

} catch (SQLException ignore) {

}

}

if (con != null) {

try {

con.close();

} catch (SQLException ignore) {

}

}

}

return rowsCount;

}

}

postgresql-42.7.2.jar

/Daotest/src/com/daotest/InsertProgram1.java

package com.daotest;

import java.util.ArrayList;

public class InsertProgram1 {

private static ArrayList<String> isbnList = null;

private static ArrayList<String> titleList = null;

private static ArrayList<Integer> priceList = null;

public static void main(String\[\] args) {

try {

SampleDAO1 objDao = new SampleDAO1();

isbnList = objDao.selectIsbnAll();

titleList = objDao.selectTitleAll();

priceList = objDao.selectPriceAll();

System.out.println("---Before SQL execute---");

display();

int rowsCount = objDao.insertBook("9", "Photoshop", 8200);

if (rowsCount > 0) {

System.out.println(rowsCount + "record registered\n");

}

isbnList = objDao.selectIsbnAll();

titleList = objDao.selectTitleAll();

priceList = objDao.selectPriceAll();

System.out.println("---After SQL execute---");

display();

} catch (Exception e) {

System.out.println("Error happened" + e);

}

}

private static void display() {

for (int i = 0; i < isbnList.size(); i++) {

System.out.println("ISBN->" + isbnList.get(i) + "\t");

System.out.println("Title->" + titleList.get(i) + "\t");

System.out.println("Price->" + priceList.get(i) + "\t");

}

System.out.println();

}

}

4.Run

---Before SQL execute---

ISBN->1

Title->Java

Price->2000

ISBN->2

Title->C

Price->3000

ISBN->3

Title->C

Price->3000

ISBN->4

Title->HTML

Price->1000

ISBN->5

Title->Spring

Price->1200

ISBN->7

Title->VF

Price->5200

ISBN->8

Title->CSS

Price->6200

1record registered

---After SQL execute---

ISBN->1

Title->Java

Price->2000

ISBN->2

Title->C

Price->3000

ISBN->3

Title->C

Price->3000

ISBN->4

Title->HTML

Price->1000

ISBN->5

Title->Spring

Price->1200

ISBN->7

Title->VF

Price->5200

ISBN->8

Title->CSS

Price->6200

ISBN->9

Title->Photoshop

Price->8200

相关推荐
hellojike2 分钟前
free-stockdb本地金融数据库核心设计
数据库·金融
Nuanyt11 分钟前
SSM 学习记录 第二部分 Spring整合Mybatis&Junit AOP核心概念 Spring事务管理 SpringMVC 请求与响应 Rest风格
java·spring·junit·mybatis·restful
醉城夜风~20 分钟前
C++模板详解:从基础到高级全面解析
java·开发语言·c++
井川廊咏27 分钟前
初探性能优化——2个月到4小时的性能提升
jvm·数据库·性能优化
地球驾驶员28 分钟前
NX二次开发C#-获取体的外表面
开发语言·c#
这个DBA有点耶29 分钟前
热点行更新:秒杀场景下一条UPDATE语句的锁等待与性能优化
数据库·sql·mysql·性能优化·database·dba
在水一缸32 分钟前
深入浅出:Node.js 下一代 ORM 架构设计与实战解析
数据库·微服务·云原生·node.js·orm·架构设计
誰能久伴不乏43 分钟前
深入理解 C++ 多态:对象模型与底层机制解析
开发语言·c++·架构
Wang's Blog1 小时前
Go-Zero项目开发30: 微服务配置中心的设计与实现
开发语言·微服务·golang·go-zero