Scott
-- Scott Eade Backstage Technologies Pty. Ltd. http://www.backstagetech.com.au
Index: org/apache/torque/adapter/DBPostgres.java =================================================================== RCS file: /home/cvs/db-torque/src/java/org/apache/torque/adapter/DBPostgres.java,v retrieving revision 1.16 diff -u -r1.16 DBPostgres.java --- org/apache/torque/adapter/DBPostgres.java 25 Aug 2003 21:56:10 -0000 1.16 +++ org/apache/torque/adapter/DBPostgres.java 14 Oct 2003 00:18:03 -0000 @@ -103,7 +103,7 @@ */ public String getIDMethodType() { - return AUTO_INCREMENT; + return SEQUENCE; }
/**
Index: org/apache/torque/oid/SequenceIdGenerator.java
===================================================================
RCS file: /home/cvs/db-torque/src/java/org/apache/torque/oid/SequenceIdGenerator.java,v
retrieving revision 1.10
diff -u -r1.10 SequenceIdGenerator.java
--- org/apache/torque/oid/SequenceIdGenerator.java 25 Aug 2003 16:33:22 -0000
1.10
+++ org/apache/torque/oid/SequenceIdGenerator.java 14 Oct 2003 00:18:05 -0000
@@ -154,7 +154,7 @@
*/
public boolean isPriorToInsert()
{
- return true;
+ return false;
} /**
@@ -164,7 +164,7 @@
*/
public boolean isPostInsert()
{
- return false;
+ return true;
}/**
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
