diff --git a/readme.html b/readme.html index 412ca2ed4..1c954744e 100644 --- a/readme.html +++ b/readme.html @@ -9,7 +9,7 @@

IBM Toolbox for Java - JTOpen Version

others. All rights reserved. File: README -Last updated: February 7, 2002 +Last updated: November 13, 2002 The term "JTOpen" refers to the open source software product "IBM Toolbox for Java" (formerly "AS/400 Toolbox for Java") plus any additional @@ -62,6 +62,7 @@

IBM Toolbox for Java - JTOpen Version

Mod 2 V4R4 5769JC1 V4R2M0 V4R2 and up V4R2 and up Mod 3 V4R5 5769JC1 V4R5M0 V4R3 and up V4R2 and up Mod 4 V5R1 5722JC1 V5R1M0 V4R4 and up V4R3 and up +Mod 5 V5R2 5722JC1 V5R2M0 V4R5 and up V4R5 and up JTOpen Not shipped NA NA V4R3 and up Newer versions of the Toolbox are backwards-compatible with earlier @@ -206,6 +207,8 @@

IBM Toolbox for Java - JTOpen Version

provided as a convenience to the developer and to mirror the objects that ship with the Toolbox LPP. +As of JTOpen 3.3, MD5 checksums are provided to verify download integrity. +

Building and Using JTOpen

Instructions for using JTOpen: 1. Download the JTOpen jt400.jar. @@ -235,7 +238,7 @@

IBM Toolbox for Java - JTOpen Version

Using the Toolbox LPP

For those interested in the Toolbox LPP version of this software: -The Mod 4 Toolbox LPP ships the following files, which are available +The Mod 5 Toolbox LPP ships the following files, which are available for download off of the official Toolbox web site at http://www.ibm.com/servers/eserver/iseries/toolbox. @@ -264,6 +267,7 @@

IBM Toolbox for Java - JTOpen Version

composer.jar Contains XSL stylesheet composer classes. reportwriter.jar Contains XSL report processor classes. outputwriters.jar Contains PDF, PCL, and font classes. +tes.jar Contains the iSeries Graphical Debugger. Instructions for using the Toolbox LPP: 1. Download the Toolbox and extract the jar file(s) you wish to use. This diff --git a/src/com/ibm/as400/access/AS400JDBCPreparedStatement.java b/src/com/ibm/as400/access/AS400JDBCPreparedStatement.java index f69c11044..f1100efda 100644 --- a/src/com/ibm/as400/access/AS400JDBCPreparedStatement.java +++ b/src/com/ibm/as400/access/AS400JDBCPreparedStatement.java @@ -2632,7 +2632,7 @@ public void setUnicodeStream (int parameterIndex, sqlDataAsLocator.setHandle (parameterRow_.getFieldLOBLocatorHandle (parameterIndex)); sqlData.set (new ConvTableReader(parameterValue, 13488, 0, LOB_BLOCK_SIZE), null, length/2); // @J0M hacked this to use the scale parm for the length } else { - sqlData.set (JDUtilities.readerToString(new ConvTableReader(parameterValue, 13488, 0, LOB_BLOCK_SIZE), length/2), null, -1); + sqlData.set (JDUtilities.readerToString(new ConvTableReader(parameterValue, 13488, 0, LOB_BLOCK_SIZE), length), null, -1); } } catch (UnsupportedEncodingException uee) { /* do nothing */