Proposals for jdbc.sgml(in 7.1.3 doc)

Поиск
Список
Период
Сортировка
От Hiroyuki Yatabe
Тема Proposals for jdbc.sgml(in 7.1.3 doc)
Дата
Msg-id ww8zo82bcyv.wl@srapc1099.sra.co.jp
обсуждение исходный текст
Ответы Re: Proposals for jdbc.sgml(in 7.1.3 doc)
Список pgsql-jdbc
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.

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Jeroen van Vianen
Дата:
Сообщение: Fix for broken JDBC's getColumn() (take 2)
Следующее
От: Hiroyuki Yatabe
Дата:
Сообщение: A proposal for jdbc.sgml(in 7.1.3 doc)