Bug #731 updateBoolean typing error
Submitted: 26 Jun 2003 7:07 Modified: 26 Jun 2003 7:21
Reporter: David Marquis Email Updates:
Status: Closed Impact on me:
None 
Category:Connector / J Severity:S2 (Serious)
Version:3.1 OS:
Assigned to: CPU Architecture:Any

[26 Jun 2003 7:07] David Marquis
Description:
In UpdatableResultSet.java, around line 1000, method updateBoolean :

this.thisRow[columnIndex - 1] = inserter.getBytesRepresentation(1);

Should be 

this.thisRow[columnIndex - 1] = inserter.getBytesRepresentation(columnIndex-1);

????

How to repeat:
See description

Suggested fix:
this.thisRow[columnIndex - 1] = inserter.getBytesRepresentation(columnIndex-1);
[26 Jun 2003 7:21] Mark Matthews
Thank you for your bug report. This issue has been fixed in the latest
development tree for that product. You can find more information about
accessing our development trees at 
    http://www.mysql.com/doc/en/Installing_source_tree.html