Re: Access to MySQL migration date/time problem (time set to 00:00:00)
Posted by: Michael G. Zinner
Date: May 18, 2005 06:20AM

If this would have been reported as a bug, this would already been fixed a long time ago.

To patch your current release 1.0.6, open the file

[INSTALLATION PATH]\java\com\mysql\grt\modules\MigrationGeneric.java and change the line

Date value = rset.getDate(i + 1);
to
Timestamp value = rset.getTimestamp(i + 1);

and recompile the file.

The fix will also be in the next release.

Please always report such issues as bugs using the MySQL bug system (http://bugs.mysql.com/)

Thanks,
Mike

Michael Zinner, Team Lead, Developer Tools
MySQL AB, www.mysql.com

Are you MySQL certified? www.mysql.com/certification

Options: ReplyQuote


Subject
Written By
Posted
Re: Access to MySQL migration date/time problem (time set to 00:00:00)
May 18, 2005 06:20AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.