|
It is a prepared statement but I was trying to keep the Java codesimple
bythe
dealing with only strings. It seems I'll need to do the conversion in
Java code rather than in the SQL statement.To
Thanks,
Todd
"Clapham, Paul"
<pclapham@core-ma
rk.com>
Sent by: "Java Programming on and aroundthe
java400-l-bounces iSeries / AS400"cc
@midrange.com <java400-l@xxxxxxxxxxxx>
Subject
2008-11-05 11:25
RE: JDBC date insertcare
Please respond to
Java Programming
on and around the
iSeries / AS400
<java400-l@midran
ge.com>
Well, don't do it that way. Just use a PreparedStatement. It takes
of all those annoying details on your behalf.TAllen@xxxxxxxxxxxx
java.util.Date date = // a date 11/5/2008 with time 4:02:04
PreparedStatement ps = conn.prepareStatement("insert into myfile
(cmdate, cmtime) values(?, ?)");
ps.setDate(1, new java.sql.Date(date.getTime()));
ps.setTime(2, new java.sql.Time(date.getTime()));
ps.executeUpdate();
PC2
-----Original Message-----
From: java400-l-bounces@xxxxxxxxxxxx
[mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of
Sent: November 5, 2008 07:16exception.
To: Java Programming on and around the iSeries / AS400
Subject: JDBC date insert
I am having trouble with a JDBC insert of a string into date or time
columns in a database table. The same command works fine from the SQL
green screen.
The insert statement fails with the "Data type mismatch" SQL
The odd thing is that this only fails when the date or time does notJAVA400-L@xxxxxxxxxxxx
have all leading zeros.
Date of 11/14/2008 - success
Date of 11/4/2008 - error
Time of 22:00:00 - success
Time of 4:00:00 - error
The insert statement looks like this:
insert into myfile (cmdate, cmtime) values(cast('11/5/2008' as date),
cast('4:02:04' as time))
Thanks,
Todd
This communication and any transmitted documents are intended to be
confidential. If there is a problem with this transmission, please
contact the sender. If the reader of this message is not the intended
recipient, or the employee or agent responsible to deliver it to the
intended recipient, you are hereby notified that any dissemination,
distribution or copying of this communication is strictly prohibited.
--
This is the Java Programming on and around the iSeries / AS400
(JAVA400-L) mailing list To post a message email:
To subscribe, unsubscribe, or change list options,http://archive.midrange.com/java400-l.
visit: http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
(JAVA400-L)
--
This is the Java Programming on and around the iSeries / AS400
mailing listcontact
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/java400-l.
This communication and any transmitted documents are intended to be
confidential. If there is a problem with this transmission, please
the sender. If the reader of this message is not the intendedrecipient,
or the employee or agent responsible to deliver it to the intendeddistribution or
recipient, you are hereby notified that any dissemination,
copying of this communication is strictly prohibited.(JAVA400-L)
--
This is the Java Programming on and around the iSeries / AS400
mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/java400-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.