vote up 1 vote down star

Hi all,

I need to figure out a way to insert a record with a java.util.Date field into a database and i'm stuck.

Does anyone know how i can do this? Right now i have something like.

        java.util.Date myDate = new java.util.Date("01/01/2009");

        sb.append("INSERT INTO USERS");
        sb.append("(USER_ID, FIRST_NAME, LAST_NAME, SEX, DATE) ");
        sb.append("VALUES ( ");
        sb.append("  '" + userId + "'");
        sb.append(", '" + myUser.GetFirstname() + "' ");
        sb.append(", '" + myUser.GetLastname() + "' ");
        sb.append(", '" + myUser.GetSex() + "' ");
        sb.append(", '" + myDate  + "'");
        sb.append(")");

        Util.executeUpdate(sb.toString());

But when i run something like this i get the error: The syntax of the string representation of a datetime value is incorrect.

Heres what the sql statement looks like:

INSERT INTO USERS (USER_ID
    , FIRST_NAME
    , LAST_NAME
    , SEX
    , CRDATE) 
VALUES (   
    'user'
    , 'FirstTest' 
    , 'LastTest' 
    , 'M'
    , 'Thu Jan 01 00:00:00 CST 2009')

Thanks

flag

7 Answers

vote up 1 vote down check

Granted, PreparedStatement will make your code better, but to answer your question you need to tell the DBMS the format of your string representation of the Date. In Oracle (you don't name your database vendor) a string date is converted to Date using the TO_DATE() function:

INSERT INTO TABLE_NAME(
  date_column
)values(
  TO_DATE('06/06/2006', 'mm/dd/yyyy')
)
link|flag
Do you know if there is anyway i can get the java.util.Date to output the date in the format '01/01/2009'? – zSysop Jul 4 at 1:08
1  
@zSyspo: Yes String s = new SimpleDateFormat("dd/MM/yyyy").format( aDate ); will do – Oscar Reyes Jul 4 at 1:11
1  
Caution: SimpleDateFormat is not Thread safe. Make a simple wrapper of your own which is Thread safe. public class ThreadSafeSimpleDateFormat { private DateFormat df; public ThreadSafeSimpleDateFormat(String format) { this.df = new SimpleDateFormat(format); } public synchronized String format(Date date) { return df.format(date); } public synchronized Date parse(String string) throws ParseException { return df.parse(string); } } – Brian Jul 4 at 1:26
Oh well, code does not format in comments :-). – Brian Jul 4 at 1:27
Thanks alot Brian! You've been vry helpful. :D – zSysop Jul 4 at 1:35
vote up 3 vote down

Before I answer your question, I'd like to mention that you should probably look into using some sort of ORM solution (e.g., Hibernate), wrapped behind a data access tier. What you are doing appear to be very anti-OO. I admittedly do not know what the rest of your code looks like, but generally, if you start seeing yourself using a lot of Utility classes, you're probably taking too structural of an approach.

To answer your question, as others have mentioned, look into java.sql.PreparedStatement, and use java.sql.Date or java.sql.Timestamp. Something like (to use your original code as much as possible, you probably want to change it even more):

java.util.Date myDate = new java.util.Date("10/10/2009");
java.sql.Date sqlDate = new java.sql.Date(myDate.getTime());

sb.append("INSERT INTO USERS");
sb.append("(USER_ID, FIRST_NAME, LAST_NAME, SEX, DATE) ");
sb.append("VALUES ( ");
sb.append("?, ?, ?, ?, ?");
sb.append(")");

Connection conn = ...;// you'll have to get this connection somehow
PreparedStatement stmt = conn.prepareStatement(sb.toString());
stmt.setString(1, userId);
stmt.setString(2, myUser.GetFirstName());
stmt.setString(3, myUser.GetLastName());
stmt.setString(4, myUser.GetSex());
stmt.setDate(5, sqlDate);

stmt.executeUpdate(); // optionally check the return value of this call

One additional benefit of this approach is that it automatically escapes your strings for you (e.g., if were to insert someone with the last name "O'Brien", you'd have problems with your original implementation).

link|flag
Why is it considered anti oop? Can you explain. I'm new to this so it would be helpful. Thanks! – zSysop Jul 4 at 1:19
@Jack Leow: That's not anti OO, It may just have a different level of OO abstraction. Martin Fowler explains it brilliantly in his book PEAA as Domain Logic Patterns: martinfowler.com/eaaCatalog while some systems may find helpful to use TransactionScript ( pretty much what zSysop is using ) for other it may be too hard or even impossible to maintain it and use "Domain Model" instead. For small apps "Domain Model" may be overkill. It is very interesting subject. – Oscar Reyes Jul 4 at 1:30
vote up 1 vote down

You should definitely use a prepared statement.

That way you can invoke.

pstmt.setDate( 1, aDate );

And the JDBC driver will do it for you ( plus you will help to prevent SQL injection )

It should look like this:

    java.util.Date myDate = new java.util.Date("10/10/2009");

    PreparedStatement pstmt = connection.prepareStatement(
    "INSERT INTO USERS ( USER_ID, FIRST_NAME, LAST_NAME, SEX, DATE ) " +
    " values (?, ?, ?, ?, ? )");

    pstmt.setString( 1, userId );
    pstmt.setString( 3, myUser.getLastName() ); 
    pstmt.setString( 2, myUser.getFirtName() ); // please use getFir.. instead of GetFir ... 
    pstmt.setString( 4, myUser.getSex() );
    pstmt.setDate( 5, new java.sql.Date( myDate.getTime() ) ); // corrected!!

Ant that's it, the jdbc driver will create the right syntax for you.

EDIT

As per the format question, using SimpleDateFormat will do:

String s = new SimpleDateFormat("dd/MM/yyyy").format( aDate );
link|flag
1  
the method setDate accepts a java.sql.Date and not a java.util.Date. – CD1 Jul 4 at 1:04
@CD1: Thanks. It is corrected now. @zSisop:java.sql.Date and java.sql.TimeStamps are different objects, if you want to store the date and the hour, you should use the later. – Oscar Reyes Jul 4 at 1:09
vote up 0 vote down

Use prepared statements, they have methods to set correctly parameters for each native Java type.

Look at the api for setDate and the examples

link|flag
vote up 0 vote down

You should be using java.sql.Timestamp instead of java.util.Date. Also using a PreparedStatement will save you worrying about the formatting.

link|flag
vote up 0 vote down

if you are using mysql .. you can save date as "2009-12-31" for example.

update person set birthday_date = '2009-12-31'

but i prefer to use jdbc although you have to create java.sql.Date ...

*Date is kind of evil in this world ... :)

link|flag
ye it's much easier in .NET lol – zSysop Jul 4 at 1:46
vote up 0 vote down

thank you this has been very unhelpful need to convert date format not hard code

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.