Return-Path: Delivered-To: apmail-db-ojb-dev-archive@www.apache.org Received: (qmail 82291 invoked from network); 13 Oct 2006 19:11:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Oct 2006 19:11:39 -0000 Received: (qmail 84023 invoked by uid 500); 13 Oct 2006 19:11:39 -0000 Delivered-To: apmail-db-ojb-dev-archive@db.apache.org Received: (qmail 83891 invoked by uid 500); 13 Oct 2006 19:11:38 -0000 Mailing-List: contact ojb-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "OJB Developers List" Reply-To: "OJB Developers List" Delivered-To: mailing list ojb-dev@db.apache.org Received: (qmail 83880 invoked by uid 500); 13 Oct 2006 19:11:38 -0000 Received: (qmail 83877 invoked by uid 99); 13 Oct 2006 19:11:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Oct 2006 12:11:38 -0700 X-ASF-Spam-Status: No, hits=-9.3 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,SUBJECT_NOVOWEL X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Oct 2006 12:11:37 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id D3C441A981D; Fri, 13 Oct 2006 12:11:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r463784 - /db/ojb/trunk/src/java/org/apache/ojb/broker/platforms/PlatformHsqldbImpl.java Date: Fri, 13 Oct 2006 19:11:17 -0000 To: ojb-commits@db.apache.org From: arminw@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061013191117.D3C441A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: arminw Date: Fri Oct 13 12:11:17 2006 New Revision: 463784 URL: http://svn.apache.org/viewvc?view=rev&rev=463784 Log: add support for database sequences Modified: db/ojb/trunk/src/java/org/apache/ojb/broker/platforms/PlatformHsqldbImpl.java Modified: db/ojb/trunk/src/java/org/apache/ojb/broker/platforms/PlatformHsqldbImpl.java URL: http://svn.apache.org/viewvc/db/ojb/trunk/src/java/org/apache/ojb/broker/platforms/PlatformHsqldbImpl.java?view=diff&rev=463784&r1=463783&r2=463784 ============================================================================== --- db/ojb/trunk/src/java/org/apache/ojb/broker/platforms/PlatformHsqldbImpl.java (original) +++ db/ojb/trunk/src/java/org/apache/ojb/broker/platforms/PlatformHsqldbImpl.java Fri Oct 13 12:11:17 2006 @@ -57,53 +57,9 @@ * integer, but it cannot be 0. * * - * - * seq.maxValue - * - * Database sequence specific property.
- * Set max value for sequence numbers. - * - * - * - * seq.minValue - * - * Database sequence specific property.
- * Set min value for sequence numbers. - * - * - * - * seq.cycle - * - * Database sequence specific property.
- * If true, specifies that the sequence continues to generate - * values after reaching either its maximum or minimum value. - *
- * If false, specifies that the sequence cannot generate more values after - * reaching its maximum or minimum value. - * - * - * - * seq.cache - * - * Database sequence specific property.
- * Specifies how many values of the sequence Oracle - * preallocates and keeps in memory for faster access. - * Allowed values: 2 or greater. If set 0, - * an explicite nocache expression will be set. - * - * - * - * seq.order - * - * Database sequence specific property.
- * If set true, guarantees that sequence numbers - * are generated in order of request. - *
- * If false, a no order expression will be set. - * - * * - * @author Thomas Mahler + *
+ * * @version $Id$ */ public class PlatformHsqldbImpl extends PlatformDefaultImpl --------------------------------------------------------------------- To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org For additional commands, e-mail: ojb-dev-help@db.apache.org