| Author |
can any one help me?
|
manish kr. pandey
Greenhorn
Joined: Aug 30, 2011
Posts: 14
|
|
i have a table emp
empid empname date_of_joining
i have write a code . and want to select record from table where date_of_joining between to and from .
Query is-
select * from emp where date_of_joining between '"+to+"' and '"from"'
where to and from is java.sql.Date object.
when i execute the code ORA 01847 error occured
|
 |
Santhosh ayiappan
Ranch Hand
Joined: Jan 30, 2007
Posts: 70
|
|
Post the code, without the code it is difficult to find the issue.
Regards
Santhosh
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32654
|
|
|
Make sure to post the code on the forum, so we can all see it.
|
 |
manish kr. pandey
Greenhorn
Joined: Aug 30, 2011
Posts: 14
|
|
yes, I know
i have no problem
|
 |
Martin Vajsar
Bartender
Joined: Aug 22, 2010
Posts: 2329
|
|
You need to use bind variables in this statement. If you don't know how to do that, look up a JDBC tutorial to learn the way.
The problem is generally caused by the fact that the database expects the date to be in a format different from what java.sql.Date.toString() produces. Using bind variables is independent of the textual representation of these variables and therefore will solve your problem, making your code immune to SQL injection attacks and more performant as well.
|
 |
manish kr. pandey
Greenhorn
Joined: Aug 30, 2011
Posts: 14
|
|
thanks for help me.
|
 |
 |
|
|
subject: can any one help me?
|
|
|