> > When I obtain a date throw OJB its format changes from the original > configured in the DB. I mean my postgres DB is set to show dates > in a "dd/mm/yyyy" format an OJB shows a "yyyy-mm-dd" format. > Is there anyway to configure OJB to work with a particular date format > or do I have to do this through Java "manually" ? > > Thanks in advance! >
OJB does not format date by itself if you use columns of type date in your database. It will only work with the "real" date, not the display string for this date. So when you retrieve the date and want to display it, it is up to you to use the format you want. Guillaume Nodet --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
