Re: Proposals for jdbc.sgml(in 7.1.3 doc)

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Hiroyuki Yatabe <yatabe(at)sra(dot)co(dot)jp>
Cc: PostgreSQL jdbc list <pgsql-jdbc(at)postgresql(dot)org>, PostgreSQL-patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: Proposals for jdbc.sgml(in 7.1.3 doc)
Date: 2001-09-12 15:48:45
Message-ID: 200109121548.f8CFmjJ13159@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-jdbc pgsql-patches


Thanks. I am attaching the patch I applied.

> Hello,
>
> Followings are proposed fixes to jdbc.sgml(line numbers are for 7.1.3
> doc). Comments?
>
> jdbc.sgml
>
> [invalid column's name in a SELECT statement]
>
> lines 579
>
> x PreparedStatement ps = con.prepareStatement("SELECT oid FROM images WHERE name=?");
>
> o PreparedStatement ps = con.prepareStatement("SELECT imgoid FROM images WHERE imgname=?");
>
>
> [the modifier in the document is different from the one in the source]
>
> lines 1280
> org.postgresql.geometric.PGcircle
>
> x public double radius
>
> o double radius // in the source, here
>
>
> [invalid return type]
>
> lines 1996
> org.postgresql.largeobject.LargeObject#read()
>
> x public void read(byte buf[],
>
> o public int read(byte buf[],
>
>
> [the discription of arguments type is incorrectly]
>
> lines 2419
> a constructor of org.postgresql.util.Serialize
>
> x public Serialize(Connection c,
> String type) throws SQLException
>
> o public Serialize(org.postgresql.Connection c,
> String type) throws SQLException
>
> lines 2462, 2504
> org.postgresql.util.Seriarize#create()
>
> x public static void create(Connection con,
> Object o) throws SQLException
>
> o public static void create(org.postgresql.Connection con,
> Object o) throws SQLException
>
> lines 2518
> org.postgresql.util.Seriarize#create()
>
> x public static void create(Connection con,
> Class o) throws SQLException
>
> o public static void create(org.postgresql.Connection con,
> Class o) throws SQLException
>
>
> [Cannot access to the page]
>
> lines 2910
>
> x See John Dumas's Java Crypt page for the original source.
>
> http://www.zeh.com/local/jfd/crypt.html
>
> (Sorry, I can't find a replacement page.)
>
> Thanks.
> ----
> Hiroyuki Yatabe(yatabe(at)sra(dot)co(dot)jp)
> Software Research Associates, Inc.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Attachment Content-Type Size
unknown_filename text/plain 3.8 KB

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2001-09-12 15:55:03 Re: [JDBC] Patch for doc/jdbc.sgml
Previous Message Darren King 2001-09-12 15:42:44 Re: Index location patch for review

Browse pgsql-jdbc by date

  From Date Subject
Next Message Bruce Momjian 2001-09-12 15:55:03 Re: [JDBC] Patch for doc/jdbc.sgml
Previous Message Bruce Momjian 2001-09-12 15:39:50 Re: [JDBC] A proposal for jdbc.sgml(in 7.1.3 doc)

Browse pgsql-patches by date

  From Date Subject
Next Message Joe Conway 2001-09-12 16:09:36 Re: Bytea string operator support
Previous Message Bruce Momjian 2001-09-12 14:38:32 Re: Bytea string operator support