Mercurial > dive4elements > river
view flys-aft/src/main/java/de/intevation/aft/IdPair.java @ 5122:5ba502e78e05 dami
Fix import of hws_* on Oracle
The OCI driver needs a field named OGR_FID as the first element
of a table, otherwise it gets confused and tries to add the
fid twice in the insert statement leading to the "too many
values" error.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Thu, 28 Feb 2013 10:09:31 +0100 |
parents | a310aceb2e51 |
children |
line wrap: on
line source
package de.intevation.aft; public class IdPair { protected int id1; protected int id2; public IdPair() { } public IdPair(int id1) { this.id1 = id1; } public IdPair(int id1, int id2) { this(id1); this.id2 = id2; } public int getId1() { return id1; } public void setId1(int id1) { this.id1 = id1; } public int getId2() { return id2; } public void setId2(int id2) { this.id2 = id2; } public String toString() { return "[IdPair: id1=" + id1 + ", id2=" + id2 + "]"; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :