首页 > 解决方案 > 为什么在 PostgreSQL 查询后没有执行部分 Java 代码?

问题描述

我正在做一个生成随机数据并用它填充 PostgreSQL 表的程序。您会发现我尝试执行三个简单 SQL 查询的代码。前两个查询运行良好,但第三个查询不行。实际上,在第二次查询之后,我的部分代码似乎根本没有执行,因为控制台中没有打印“是”。

我试图通过注释掉第二个查询执行行来编译我的代码,然后执行我的代码的结尾。任何想法?

import java.sql.*;

public class Main {

    public static void main(String[] args) {

        //connection to DB
        Class.forName("org.postgresql.Driver");
        Connection con = DriverManager.getConnection("jdbc:postgresql://localhost:5432/Benerator","postgres","newPassword");

        //print the first two columns of table bank_card_people
        PreparedStatement stmt = con.prepareStatement("select * from public.bank_card_people");
        ResultSet res = stmt.executeQuery();
        while(res.next()){
            System.out.println(res.getString(1)+ " " + res.getString(2));}

        //add a line to the same table
        String SQL = "insert into public.bank_card_people (\"first-name\", \"last-name\", \"card-number\") VALUES ('example','example','example')";
        PreparedStatement stmt2 = con.prepareStatement(SQL);
        stmt2.executeQuery();

        // is supposed to print all the databases
        PreparedStatement stmt3 = con.prepareStatement("SELECT datname FROM pg_database WHERE datistemplate = false");
        ResultSet res2 = stmt3.executeQuery();
        System.out.println("yes");
        while(res2.next()){
            System.out.println(res2.getString(1));}

这是输出:

User One
User Two
User Three
example example
example example
No results were returned by the query.

这是我注释掉该行时的输出:stmt2.executeQuery();

User One
User Two
User Three
example example
example example
yes
postgres
Benerator

标签: javapostgresqlexecution

解决方案


INSERT 语句不能由executeQuerybut执行executeUpdate

Connection、Statement 和 ResultSet 也必须是.close()d,最好使用 try-with-resources 来完成,即使出现异常或返回也能保证关闭。

它还有助于命名,因为它引入了新块。

    //connection to DB
    Class.forName("org.postgresql.Driver");
    try (Connection con = DriverManager.getConnection("jdbc:postgresql://localhost:5432/Benerator","postgres","newPassword")) {

        //print the first two columns of table bank_card_people
        try (PreparedStatement stmt = con.prepareStatement("select * from public.bank_card_people");
                ResultSet res = stmt.executeQuery()) {
            while (res.next()) {
                System.out.println(res.getString(1)+ " " + res.getString(2));
            }
        }

        //add a line to the same table
        String sql = "insert into public.bank_card_people (\"first-name\", \"last-name\", \"card-number\") VALUES ('example','example','example')";
        try (PreparedStatement stmt2 = con.prepareStatement(sql)) {
            int updateCount = stmt2.executeUpdate();
        }

        // is supposed to print all the databases
        try (PreparedStatement stmt3 = con.prepareStatement("SELECT datname FROM pg_database WHERE datistemplate = false"));
                ResultSet res2 = stmt3.executeQuery()) {
            System.out.println("yes");
            while(res2.next()){
                System.out.println(res2.getString(1));
            }
        }
    }

推荐阅读