To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=32152
User msc changed the following:
What |Old value |New value
================================================================================
Status|NEW |RESOLVED
--------------------------------------------------------------------------------
Resolution| |WONTFIX
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Tue Jun 7 04:23:10 -0700
2005 -------
Hi allgaeu_tobias,
This is a problem of the Oracle JDBC driver.
The colunm in the table is from type DATE. So the jdbc driver return DATE when
you ask for the columntype. And so OOo use getDate() to get the content of the
field. Unfortunately the getDate() methods only return the date part and not the
time part.
Here is the java code. May be you want also test it:
ResultSet result = stmt.executeQuery("select * from TABLE_WITH_DATE_COLUMN");
System.out.println(result.getMetaData().getColumnTypeName(1)));
System.out.println(result.getDate(1));
System.out.println(result.getTime(2));
I close this issue now as WONTFIX. CANTFIX would be the better state but
issuetracker doesn't have such state.
Bye Marc
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]