Re: inet datatype

From: Oliver Jowett <oliver(at)opencloud(dot)com>
To: Joseph Shraibman <jks(at)selectacast(dot)net>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: inet datatype
Date: 2003-12-04 03:39:34
Message-ID: 20031204033934.GF5601@opencloud.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Wed, Dec 03, 2003 at 10:14:50PM -0500, Joseph Shraibman wrote:
> Oliver Jowett wrote:
> >On Wed, Dec 03, 2003 at 09:12:36PM -0500, Joseph Shraibman wrote:
> >
> >>Is there any reason in particular that the inet type isn't returned by
> >>the jdbc driver as an java.net.InetAddress ?
> >
> >
> >InetAddress doesn't store netmask information.
> >
> >-O
> ... and the alternative is... ?

Build an appropriate class that stores the whole type, along the lines of
what's done for the geometric types. That class can implement a
toInetAddress() method if needed.

> I say just return the InetAddress, and
> if someone wants the netmask they'll have to call getString() and parse
> it themselves. Doing nothing is not an option.

I don't think doing a lossy conversion by default is a good solution.

-O

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Ezotyrik 2003-12-05 03:15:12 Re: Backend Protocol Examples?
Previous Message Joseph Shraibman 2003-12-04 03:14:50 Re: inet datatype