I have a string in the format "dd.mm.yyyy hh:mm".. i need to convert it into oracle date format 'dd-mon-yy'..... How do i make it happen???
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
How is the string sent to oracle?? Use the to_date() function to convert the java string to oracle date. http://www.techonthenet.com/oracle/functions/to_date.php |
|||||
|
|
It's not clear where the string is, considering the java tag... Assuming a column value:
|
||||
|
|
|
You can use to_char() method of oracle. You can get more information about date conversion here. |
|||
|
|
|
If you want to perform an sql query against your database via prepared statment you can use
which stores the Date. Note that this object does not store time, just month, day and year. Also see
If you are looking to format the date for display purpose, try
|
|||
|