|
As of v5r2 you can use an identity column: CREATE TABLE tablename ( ID INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT by 1, NO CACHE), MODIFIED DECIMAL(19,0) NOT NULL, PRIORITY SMALLINT NOT NULL, PRIMARY KEY (ID) ) This will work much like a sequence. -----Original Message----- From: patrick.odowd@xxxxxxxxxxxxxxxxxxxxxx [mailto:patrick.odowd@xxxxxxxxxxxxxxxxxxxxxx] Sent: Tuesday, March 09, 2004 6:33 AM To: java400-l@xxxxxxxxxxxx Subject: Next number processing Before acting on this e-mail or opening any attachment, you are advised to read the disclaimer at the end of this mail. Hi, I have an Event file that has a field called ID as a primary key. ID is an integer, incremented by 1 for each record added. I am wondering what the options are for retrieving the next sequence number for the event records. At the moment I have a separate file that stores the last event ID used, when a new event record needs to be added I call a static method on a database helper class that returns the next number, code below. There will only be 1 thread incrementing this event. The volume of events is low, a few per day. It is a batch process. What I have works but I am wondering if there a better way to do this? Thanks in advance, Pat public static synchronized int getNextNumber(Connection dbConn, String collection, String key) throws JS_Exception { Statement nextNumStm; ResultSet nextNumSet; String nextNumQry; int nextNum = -1; try { nextNumStm = dbConn.createStatement(); nextNumStm.executeUpdate("UPDATE " + collection + ".MQ_PARM " + "SET INTVALUE = INTVALUE + 1 WHERE ID =" + '\'' + key + '\''); nextNumQry = "SELECT * FROM " + collection + ".MQ_PARM WHERE ID =" + '\'' + key + '\''; nextNumSet = nextNumStm.executeQuery(nextNumQry); if (nextNumSet.next()) { nextNum = nextNumSet.getInt("INTVALUE"); } } catch (SQLException e) { JS_Utils.processException(e); throw new JS_Exception(); } return nextNum; } ********************************************************************** This e-mail is intended solely for the addressee and is strictly confidential. If you are not the addressee, please do not read, print, re-transmit, store or act in reliance on it or any attachments. Instead please e-mail it back to the sender and delete the message from your computer. E-mail transmission cannot be guaranteed to be secure or error free and The Co-operative Bank accepts no liability for changes made to this e-mail (and any attachments) after it was sent or for viruses arising as a result of this e-mail transmission. Any unauthorised reproduction, dissemination, copying, disclosure, modification, distribution and/or publication of this e-mail message is strictly prohibited. The Co-operative Bank reserves the right to intercept any e - mails or other communication for permitted purposes in accordance with the current legislation which you send to, or receive from, any of the employees or agents of the Bank via Bank telecommunication systems. By so corresponding you also give your consent to the Bank monitoring and recording of any correspondence using these systems. The Co-operative Bank p.l.c. is registered in England and Wales, number 990937. The registered office is at PO Box 101, 1, Balloon Street, Manchester, M60 4EP. ********************************************************************** _______________________________________________ This is the Java Programming on and around the iSeries / AS400 (JAVA400-L) mailing list To post a message email: JAVA400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/java400-l or email: JAVA400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/java400-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.