Subject Re: JDBC Development
Author alberola@bio.es
Hello,

In fact, I am not cloning the remote layer and writing it in
Java, I am coding all of this stuff from scratch. Don't be
afraid Jim, I am not writing a XDR port in Java. :-)

Sorry, but I'm not very good explaining what I am doing and
how I am doing it. And, of course, my poor english doesn't help
very much.

Thanks Jim.

Bye.
Alejandro Alberola.

--- In IB-Java@y..., Jim Starkey <jas@n...> wrote:
> At 06:17 AM 4/29/01 -0000, alberola@b... wrote:
> >
> > But, I have most of the line protocol like XDR stuff finished. And
> > I will release this code in a second stage as soon as it matures a
> > bit.
> >
>
> Whoa! Skip the XDR stuff all together and use simple in-line code.
> The XDR appeared on the scene at the instance I was starting to
> design the protocol. In retrospect, it is unnecessary overkill.
> It will be faster and simpler without XDR.
>
> I would make a subclass of DataInputStream and DataOutputStream
> translate to/from 8 bit null terminated strings, and do everything
> with inline readInt/writeInt, etc., calls.