I am using the following code to store my date in my database:
String mydate = java.text.DateFormat.getDateTimeInstance().format(
Calendar.getInstance().getTime());
This is a string in the db. There are multiple lists and I want to display to the user changes made based on the day.
In sqlserver there is an actual date variable and you can run BETWEEN on it, I am not sure how to implement this with the current datatype i'm using.
There may be a better way to store the date, but this was the only way that I have been able to successfully do it.