Main   Products   Offshore Outsourcing   Customers   Partners   ContactUs  
JDBC Databases
  HXTT Access v7.1
  HXTT Cobol v5.0
  HXTT DBF v7.1
 
  Buy Now
  Support
  Download
  Document
  FAQ
  HXTT Excel v6.1
  HXTT Json v1.0
  HXTT Paradox v7.1
  HXTT PDF v2.0
  HXTT Text(CSV) v7.1
  HXTT Word v1.1
  HXTT XML v4.0
Offshore Outsourcing
Free Resources
  Firewall Tunneling
  Search Indexing Robot
  Conditional Compilation
  Password Recovery for MS Access
  Password Recovery for Corel Paradox
  Checksum Tool for MD5
  Character Set Converter
  Pyramid - Poker of ZYH
   
   
   
Heng Xing Tian Tai Lab of Xi'an City (abbr, HXTT)

HXTT DBF
Driver timestamp problem
W KING
2008-11-18 09:04:47
Hi

Can you please assist me.

The new DBF_JDBC40.jar returns the wrong timestamp when I use java.sql.Timestamp cValue = rs.getTimestamp(2);

DBF_JDBC40.jar => 2008-11-18 19:03:00.25 => TIMESTAMP
DBF_JDBC30.jar => 2008-11-18 17:03:00.25 => TIMESTAMP Correct

I am using dbase level 7 tables
Re:Driver timestamp problem
HXTT Support
2008-11-19 02:06:08
If you use the latest DBF_JDBC30.jar, it should return the same timestamp too. That's resulted by using standard gmt timezone, not calculated timezone offset automatically again.

You can use
Calendar cal = Calendar.getInstance();
java.sql.Timestamp cValue = rs.getTimestamp(2,cal);

For instance:
TimeZone tz = TimeZone.getTimeZone("gmt");
Calendar cal = Calendar.getInstance(tz);
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy zzz");
sdf.setTimeZone(tz);
System.out.println(sdfs.format(resp.getTimestamp(2, cal)));

Search Key   Search by Last 50 Questions




Google
 

Email: webmaster@hxtt.com
Copyright © 2003-2019 Heng Xing Tian Tai Lab of Xi'an City. | All Rights Reserved. | Privacy | Legal | Sitemap