In a java application what would a good compromise in terms of extracing and inputting date information with a MySQL database using a mix of datetimes and timestamps?
|
In Java side, the date is usually represented by the (poorly designed, but that aside) In SQL side, there are several standard date and time types, In contrary to The normal practice to store a timestamp in the DB (thus,
The normal practice to obtain a timestamp from the DB is to use
|
|||||||||
|
|
The MySQL documentation has information on mapping MySQL types to Java types. In general, for MySQL datetime and timestamps you should use http://dev.mysql.com/doc/refman/5.1/en/datetime.html http://www.coderanch.com/t/304851/JDBC/java/Java-date-MySQL-date-conversion http://stackoverflow.com/questions/2400955/how-to-store-java-date-to-mysql-datetime EDIT: As others have indicated, the suggestion of using strings may lead to issues. |
||||