Re: [JDBC] Attempt to clean up ExecSql() in JDBC

2001-09-05 Thread Bruce Momjian
Patch applied and file added. Thanks. > > Hi, > > Attached is my attempt to clean up the horrors of the ExecSQL() method in > the JDBC driver. > > I've done this by extracting it into a new method object called > QueryExecutor (should go into org/postgresql/core/) and then taking it > apart

Re: [JDBC] Attempt to clean up ExecSql() in JDBC

2001-08-28 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://candle.pha.pa.us/cgi-bin/pgpatches I will try to apply it within the next 48 hours. > > Hi, > > Attached is my attempt to clean up the horrors of the ExecSQL() method in > the JDBC driver. > > I've done th

[JDBC] Attempt to clean up ExecSql() in JDBC

2001-08-26 Thread Anders Bengtsson
Hi, Attached is my attempt to clean up the horrors of the ExecSQL() method in the JDBC driver. I've done this by extracting it into a new method object called QueryExecutor (should go into org/postgresql/core/) and then taking it apart into different methods in that class. A short summary: *