iBATIS uses straight jdbc underneath. If the field in your database is a
varchar and the bean property is a Date object it will be up to the jdbc
driver to perform the conversion. You can make sure that iBATIS is using
the proper PreparedStatement calls if you explicitly specify the type of the
be
Hi All,
The scenario of my problem is as follows:
- I've tried to prevent my app against SQL injection, so I changed a '$'
signs into '#' signs in xml files where value of parameters are added
- the problem was solved but there appears another one: problem with Date
object insertion.
Previously