1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

New stuff from Peter Mount for jdbc.

This commit is contained in:
Bruce Momjian
1998-09-03 02:31:38 +00:00
parent c37adac74e
commit 35a945f2b5
8 changed files with 198 additions and 198 deletions

View File

@@ -123,7 +123,7 @@ public class psql
if(rs.wasNull())
System.out.print("{null}"+(i<cols?"\t":"\n"));
else
System.out.print(rs.getObject(i).toString()+(i<cols?"\t":"\n"));
System.out.print(o.toString()+(i<cols?"\t":"\n"));
}
}