gpt4 book ai didi

java - 为什么我的查询结果没有打印出来?

转载 作者:行者123 更新时间:2023-11-29 20:10:58 24 4
gpt4 key购买 nike

package jdbc;
import java.io.PrintWriter;
import java.sql.*;

public class Driver {

public static void main(String[] args) {
try {
Connection myConn = DriverManager.getConnection("jdbc:mysql://localhost:80/entries",
"root",
"NULL");
Statement mystmt = myConn.createStatement();
ResultSet myRs =
mystmt.executeQuery("SELECT * FROM `entries` WHERE word LIKE '%ad' OR word LIKE '%act'");
while(myRs.next()) {
System.out.println(myRs.getString("word"));
}
}
catch(Exception e) {
e.printStackTrace();
}
}
}

上面是我对英语词典的sql数据库的代码。为什么当我运行此代码时,我的查询结果没有显示?

最佳答案

尝试在 Sql Server 上运行此查询。我认为没有符合您在 where 子句中定义的过滤条件的记录。

关于java - 为什么我的查询结果没有打印出来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40118727/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com