I've just checked and this is what it reports for the last change:

Index: jdbcParameterMetaData.java
===================================================================
RCS file:
/cvsroot/hsqldb/hsqldb-dev/src/org/hsqldb/jdbcParameterMetaData.java,v
retrieving revision 1.2
diff -r1.2 jdbcParameterMetaData.java
92a93
>         Result.ResultMetaData rmd;
99c100,102
<         types          = r.colType;
---
>         rmd = r.metaData;
>
>         types          = rmd.colType;
101,104c104,107
<         nullability    = r.nullability;
<         isIdentity     = r.isIdentity;
<         classNames     = r.sClassName;
<         modes          = r.paramMode;
---
>         nullability    = rmd.nullability;
>         isIdentity     = rmd.isIdentity;
>         classNames     = rmd.sClassName;
>         modes          = rmd.paramMode;

----- Original Message -----
From: "Sebastian Kloska" <[EMAIL PROTECTED]>
To: "HSQLDB Developers" <[EMAIL PROTECTED]>; "fredt"
<[EMAIL PROTECTED]>
Sent: 26 August 2003 09:25
Subject: Re: [Hsqldb-developers] Build failes under SDK 1.4.X


  Hi Fredt at al.

  No the change doesn't seem to be there....

  S.


fredt wrote:
> Thanks Sebastian,
>
> Changes to this file had not been committed to CVS for some reason. A
change
> similar to what you suggest is now there. As this file is JDK 1.4 specific
> due to the use of a new JDBC interface, it won't compile under 1.3.
>
> Also, the Sourceforge listserver seems to be erratic. I received your post
> less than an hour ago, although you sent it over 20 hours ago.
>
> The current CVS head contains updates to ON DELETE CASCADE to work with
> chained same-table references.
>
> Fred



-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
hsqldb-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hsqldb-developers

Reply via email to