Hello Friends, I am trying to retrieve info from the Oracle DB, with a SQL statement which looks something like: Select * from tblORA where tblDate = ('myDate','MMDDYYYY') Can myDate be of type String? I am trying to retrieve a date of String type from another page and insert that date into the SQL statement. What would be a good way so that the Date that I retrieve from a previous page is of correct type and be included in the SQL statement. Thanks a bunch -Rao
prabhatis
Greenhorn
Joined: Apr 07, 2001
Posts: 18
posted
0
u do something like this : String sDate = "TO_DATE('"+myDate+"','DD.MM.YYYY')"; now Query= "select * from tablename where datecol="+sDate; hope it will help lemme know