Description
First of all, thanks for these bidings, they are proving incredibly useful.
I'm using odbc version 0.3.1 (as installed from npm)
I'm encountering difficulties parsing TIMESTAMPS coming from a IBM DB2 driver:
var res = []; db2.queryDB('select eventdate from dev.trace_table order by EVENTDATE desc fetch first row only with ur', function(results) { res = results });
undefined
res
[ { EVENTDATE: Sun, 07 Dec 1969 09:03:09 GMT } ]
When I run the same query on isql i get the correct results i.e
SQL> select eventdate from dev.trace_table order by EVENTDATE desc fetch first row only with ur
+---------------------------+
| EVENTDATE |
+---------------------------+
| 2012-04-05 07:30:19.160547|
+---------------------------+
SQLRowCount returns -1
1 rows fetched