gpt4 book ai didi

java - 使用java进行sqlite查询

转载 作者:太空宇宙 更新时间:2023-11-04 12:54:22 32 4
gpt4 key购买 nike

我正在开发轮类经理程序,该程序计算月薪等。基于 SQLite 数据库的程序,该数据库不断根据用户输入进行更新。我的问题是,我如何使用java中的SQLite函数来检索信息,比如说在一个命令中的月薪(我知道我可以使用“select sum(tips) between date1 and date2”,但是我如何获得变量内的函数结果?)到目前为止,我已经创建了一个函数,它获取两个日期并检索这些日期之间的所有类次工资,并用 ResultSet 汇总它们。

这是我的代码:

public static String tipsMade(String date1, String date2){
Connection c = null;
Statement stmt = null;
ResultSet rs = null;
String ans= null;
int sum = 0;
try {
Class.forName("org.sqlite.JDBC");
c = DriverManager.getConnection("jdbc:sqlite:C:\\Users\\Gil\\test.db");
c.setAutoCommit(false);
System.out.println("Opened database successfully");
stmt = c.createStatement();
rs = stmt.executeQuery("select tips from shifts where fulldate between "+"'"+date1+"'"+"and " +"'"+date2+"'"+ ";");
while(rs.next()){
sum += rs.getInt("tips");
}
ans = Integer.toString(sum);
//

//close connections and etc
stmt.close();
c.commit();
c.close();

} catch ( Exception e ) {
System.err.println( e.getClass().getName() + ": " + e.getMessage() );
System.exit(0);
}
return ans;
}

最佳答案

我编辑了你的代码。 请注意,如果您选择提示的总和,列名称会发生​​变化。您也只能得到一行一列的结果,因此您不再需要 while 循环。

提示的总和现在保存在变量sum

public static String tipsMade(String date1, String date2){
Connection c = null;
Statement stmt = null;
ResultSet rs = null;
String ans= null;
int sum = 0;
try {
Class.forName("org.sqlite.JDBC");
c = DriverManager.getConnection("jdbc:sqlite:C:\\Users\\Gil\\test.db");
c.setAutoCommit(false);
System.out.println("Opened database successfully");
stmt = c.createStatement();
rs = stmt.executeQuery("select sum(tips) from shifts where fulldate between "+"'"+date1+"'"+"and " +"'"+date2+"'"+ ";");
while(rs.next()){
sum = rs.getInt("sum(tips)");
}
ans = Integer.toString(sum);
//

//close connections and etc
stmt.close();
c.commit();
c.close();

} catch ( Exception e ) {
System.err.println( e.getClass().getName() + ": " + e.getMessage() );
System.exit(0);
}
return ans;
}

关于java - 使用java进行sqlite查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35535667/

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