|
10 | 10 | importorg.postgresql.util.*; |
11 | 11 |
|
12 | 12 | /** |
13 | | - * $Id: Connection.java,v 1.2 2000/06/06 07:24:06 peter Exp $ |
| 13 | + * $Id: Connection.java,v 1.3 2000/06/06 07:45:07 peter Exp $ |
14 | 14 | * |
15 | 15 | * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or |
16 | 16 | * JDBC2 versions of the Connection class. |
@@ -703,14 +703,14 @@ public void addDataType(String type,String name) |
703 | 703 | // the full class name of the handling class. |
704 | 704 | // |
705 | 705 | privatestaticfinalStringdefaultObjectTypes[][] = { |
706 | | -{"box","postgresql.geometric.PGbox"}, |
707 | | -{"circle","postgresql.geometric.PGcircle"}, |
708 | | -{"line","postgresql.geometric.PGline"}, |
709 | | -{"lseg","postgresql.geometric.PGlseg"}, |
710 | | -{"path","postgresql.geometric.PGpath"}, |
711 | | -{"point","postgresql.geometric.PGpoint"}, |
712 | | -{"polygon","postgresql.geometric.PGpolygon"}, |
713 | | -{"money","postgresql.util.PGmoney"} |
| 706 | +{"box","org.postgresql.geometric.PGbox"}, |
| 707 | +{"circle","org.postgresql.geometric.PGcircle"}, |
| 708 | +{"line","org.postgresql.geometric.PGline"}, |
| 709 | +{"lseg","org.postgresql.geometric.PGlseg"}, |
| 710 | +{"path","org.postgresql.geometric.PGpath"}, |
| 711 | +{"point","org.postgresql.geometric.PGpoint"}, |
| 712 | +{"polygon","org.postgresql.geometric.PGpolygon"}, |
| 713 | +{"money","org.postgresql.util.PGmoney"} |
714 | 714 | }; |
715 | 715 |
|
716 | 716 | // This initialises the objectTypes hashtable |
|