
Patch: w501_060922_0012_querybuilder.zip

Install Instructions: Unzip this patch into the server installation folder.  This replaces the querybuilder.war file in the 
applications folder and includes all fixes detailed below.  Any custom settings in the WEB-INF/web.xml file should be propagated into the web.xml file
contained within this patch war.

Case Num: 4315

Description: 08/18/2006 Fix of JDBC client handling of batching (determined by setFetchSize on the statement) results for CallableStatements.
  Fix for reading batches from connectors returning results for stored procedures.
  Usage Note: To avoid errors, CallableStatments should be created as scroll insensitive.
  Enhancement to allow the fetch size for procedures to be set as a connector binding property.  To enable this property, an entry in the ConfigurationInfo.def or server config file is needed.  For exmample:
  <Connector Name="My Sybase Connector" ComponentType="Sybase ANSI JDBC Connector" ...
    <Property Name="FetchSize">5000</Property>
    ...
  Sets a fetch size of 5000 for My Sybase Connector.  This setting can be exposed for editing through the console by adding it to the appropriate component definition.  For example:

  <ComponentType Name="Sybase ANSI JDBC Connector" ...
    <ComponentTypeDefn Deprecated="false">
      <PropertyDefinition Name="FetchSize" DisplayName="Fetch Size" ShortDescription="Fetch Size For Procedure Execution." DefaultValue="0" Multiplicity="0..1" PropertyType="Integer" ValueDelimiter="," IsConstrainedToAllowedValues="true" IsExpert="true" IsHidden="false" IsMasked="false" IsModifiable="true" IsPreferred="false"/>
    </ComponentTypeDefn>
    ...
  Allows the fetch size to be edited for all Sybase ANSI JDBC Connectors

Case Num: 4580

Description: 09/11/2006 Fixed JDBC URL format error that would occur if a password passed as part of the JDBC URL contains the @ symbol.

Case Num: 4618

Description: 09/22/2006 Fixes an issue that prevents QueryBuilder from using a SOAP Connection when QueryBuilder is being accessed via HTTPS.
