こんにちは、例を開発しました。これは私のコードです:
public class GetMonthFromDate {
public int data() {
int count=0;
java.sql.Timestamp timeStamp = new Timestamp(System.currentTimeMillis());
java.sql.Date date = new java.sql.Date(timeStamp.getTime());
//count++;
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con =
DriverManager.getConnection("jdbc:mysql://localhost:3306/xcart-432pro",
"root", "");
PreparedStatement statement =
con.prepareStatement("select * from xcart_order_status_history where date_time='date'");
ResultSet result = statement.executeQuery();
while (result.next()) {
// Do something with the row returned.
count++; //if the first col is a count.
}
} catch(Exception exc) {
System.out.println(exc.getMessage());
}
return count;
}
}
上記のコードではうまくいきません。
ここで私はこのコードを使用しています
java.sql.Timestamp timeStamp = new Timestamp(System.currentTimeMillis());
java.sql.Date date = new java.sql.Date(timeStamp.getTime());
出力のみを与えることを意味します2012-08-08
。したがって、コードで日付を呼び出すだけです。しかし、それは私にとってはうまくいきません.displayedはカウント値を返します0
. o 間違っています。2
正しいだけ。一致したクエリにはデータベースに2つの値があるためです。
select * from xcart_order_status_history where date_time='date'