Subject | Re: JayBird and large attachment |
---|---|
Author | rrokytskyy@acm.org |
Post date | 2003-12-17T11:41:39Z |
> this is the fix we did to eliminate this excpetion:Thanks! I will apply your patch today.
>
> Index: FBBigDecimalField.java
> ===================================================================
> RCS file: /cvsroot/firebird/client-
> java/src/main/org/firebirdsql/jdbc/Attic/FBBigDecimalField.java,v
> retrieving revision 1.7
> diff -r1.7 FBBigDecimalField.java
> 110c110,111
> < return getBigDecimal().longValue();
> ---
> > BigDecimal bigDecimal = getBigDecimal();
> > return (bigDecimal != null ? bigDecimal.longValue(): 0);
Roman