On Thu, 16 Sep 2004, Simon Moses wrote:
> dear sir,
> i am getting date in 'yyyy-mm-dd' format when i use
> rs.getDate() method. i want it to be in 'dd/mm/yyyy'
> format.
This is the format that the Date class' toString() method uses, so this is
an application thing, not a driver property. See
java.text.SimpleDateFormat.
Kris Jurka