You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by hu...@apache.org on 2002/08/17 00:28:35 UTC

cvs commit: jakarta-commons-sandbox/scaffold/src/java/org/apache/commons/scaffold/sql command.properties.sample.txt

husted      2002/08/16 15:28:35

  Added:       scaffold/src/java/org/apache/commons/scaffold/sql
                        command.properties.sample.txt
  Log:
  Update JavaDocs
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/scaffold/src/java/org/apache/commons/scaffold/sql/command.properties.sample.txt
  
  Index: command.properties.sample.txt
  ===================================================================
  # /**
  #  * Sample SQL Commands
  #  *
  #  * @author Ted Husted
  #  * @version $Revision: 1.1 $ $Date: 2002/08/16 22:28:35 $
  #  * @license <a href="http://apache.org/LICENSE">Apache License</a>
  #  */
  # 
  keys.table = nextKeys
  keys.first = 101
  keys.table.create = CREATE TABLE nextKeys (name char(32) NOT NULL PRIMARY KEY,marked smallint(1) NOT NULL DEFAULT 0,next int(11) NOT NULL DEFAULT 0);
  keys.next = SELECT next FROM nextKeys WHERE name=?;
  keys.inc = UPDATE nextKeys SET next=next+1 WHERE name=?;
  # // command.properties
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>