Hi,
I'm doing updates to records using JDBC but the timestamp field doesn't update.
An example:
Address has only two fields
Line1 - varchar(40)
UpdateTime - timestamp
ResultSet rs = this.doQuery("SELECT * FROM address WHERE address.key = 1",
true);
rs.updateString("Line1", "street addr");
rs.updateRow();
The above does not update the timestamp field UpdateTime
If however I do a query
"Update address set line1 = 'street addr' where address.key = 1"
Then the timestamp is updated.
Any idea how I can get past this problem?