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 {