Even when I set the time portion of the java.util.Date I end up only with the year+month+day in the DB.
In a related question, where is the definative documentation for the allowed format of inline parameters (i.e., the stuff between "#" and "#")?
Thanks for any help you can offer.
Here's what I'm doing now:
--- Java Class ---
public class MyBean {
}
--- Ibatis Map ---
<insert id="insertMyBean" parameterClass="MyBean">
</insert>
--- Oracle Table ---
CREATE TABLE MYTABLE
(
MYDATE DATE
)
