Re: Regarding column reordering project for GSoc 2012

From: Merlin Moncure <mmoncure(at)gmail(dot)com>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Claes Jakobsson <claes(at)versed(dot)se>, Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>, Alvaro Herrera <alvherre(at)commandprompt(dot)com>, Atri Sharma <atri(dot)jiit(at)gmail(dot)com>, Daniel Farina <daniel(at)heroku(dot)com>, Andrew Dunstan <andrew(at)dunslane(dot)net>, Dave Page <dpage(at)pgadmin(dot)org>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Regarding column reordering project for GSoc 2012
Date: 2012-04-09 18:29:46
Message-ID: CAHyXU0x8RjQY6pxEBMFq1nS_y9bxFjhO_kfYMf4u7zM9DV-q4g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Mon, Apr 9, 2012 at 1:14 PM, Bruce Momjian <bruce(at)momjian(dot)us> wrote:
> Well, I assume they reimplemented libpq so that java would not rely on a
> platform-specific library like libpq.

yes, that is correct. jdbc for postgres is a complete implementation
of the client side protocol. this has some good and bad points -- on
the good side you have some features libpq is only about to get, like
row level result processing, but on them minus side you are missing
some features libpq has, like gssapi authentication (but you can still
get that with jdbc->odbc bridge).

but generally speaking jdbc is displacing odbc as the 'go to' library
for connection between different kinds of database systems, especially
on non-windows environments. jdbc is to java as fdw is to postgres
basically. so a fdw exposed jdbc driver should be able to connect and
gather data from just about anything -- even something like sql server
so that you could bypass the freetds dependency which is quite nice.

there's an odbc-fdw project that does something pretty similar and
might be a more natural choice for windows coders.

merlin

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2012-04-09 18:35:47 Re: Regarding column reordering project for GSoc 2012
Previous Message Andrew Dunstan 2012-04-09 18:27:38 Re: why was the VAR 'optind' never changed in initdb?