Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

date storage and retrival in mysql

Status
Not open for further replies.

abyinsydney

Programmer
Feb 17, 2004
99
AU
greetings fellow citizens
could any tell me the format to upload date in mysql database. and retrive the data between these dates


i've to upload date from a text file to my sql databse and then rerive the records between the two dates

thnax in advance
aby
 
Eg :

Code:
PreparedStatement ps = connection.prepareStatement("insert into login_table values (?,?,?)");
ps.setString(1,"Dave");
ps.setString(2,"Jones");
ps.setTimestamp(3,new java.sql.Timestamp(System.currentTimeMillis());
boolean success = ps.execute();
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top