|
Size: 667
Comment:
|
← Revision 3 as of 2009-09-20 22:11:25 ⇥
Size: 671
Comment: converted to 1.6 markup
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 5: | Line 5: |
| JIRA issue tracking this feature : [http://issues.apache.org/jira/browse/DERBY-712 DERBY-712] | JIRA issue tracking this feature : [[http://issues.apache.org/jira/browse/DERBY-712|DERBY-712]] |
| Line 7: | Line 7: |
| Functional Specification : [http://issues.apache.org/jira/secure/attachment/12401852/SequenceGenerator.html Spec] | Functional Specification : [[http://issues.apache.org/jira/secure/attachment/12401852/SequenceGenerator.html|Spec]] |
SQL Sequences
This page tracks the implemeting of ANSI/ISO Sequences for the Derby DBMS.
JIRA issue tracking this feature : DERBY-712
Functional Specification : Spec
- Generating UUIDs
- import org.apache.derby.impl.services.uuid.BasicUUID; public class UUIDMaker {
- public static void main( String[] args )
- throws Exception
- BasicUUID uuid = new BasicUUID( Runtime.getRuntime().freeMemory(), System.currentTimeMillis(), (int) 2551218188L ); System.out.println( uuid );
- public static void main( String[] args )
- import org.apache.derby.impl.services.uuid.BasicUUID; public class UUIDMaker {