Proposals for jdbc.sgml(in 7.1.3 doc)

Started by Hiroyuki Yatabeover 24 years ago2 messageshackers
Jump to latest
#1Hiroyuki Yatabe
yatabe@sra.co.jp

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@sra.co.jp)
Software Research Associates, Inc.

#2Bruce Momjian
bruce@momjian.us
In reply to: Hiroyuki Yatabe (#1)
Re: Proposals for jdbc.sgml(in 7.1.3 doc)

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@sra.co.jp)
Software Research Associates, Inc.

---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org

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

Attachments:

/bjm/difftext/plainDownload+18-18