Oracle getting started Tutorial: Summary of Sequence used in the ADF

Source: Internet
Author: User

1. Use Groovy in EO attributes

Excellent: Simple and Direct

Missing: disconnected number

  1. (New Oracle. jbo. server. SequenceImpl ("XXXX_SEQ", adf. object. getDBTransaction (). getSequenceNumber ()
2. assign values to attributes in the create method of the java class corresponding to EO

Excellent: complex Sequence values can be generated.

Missing: disconnected number

  1. SequenceImpl sequence =
  2. NewSequenceImpl ("XXX_SEQ", GetDBTransaction ());
  3. Oracle. jbo. domain. Number seqNum = sequence. getSequenceNumber ();
  4. String strSeq ='Sih _'+ SeqNum;
  5. SetStorageInHeaderCode (strSeq );
3. Use the DBSequence type

Create a Trigger on the database to assign values to the table fields. In EO, set the field type to DBSequence.
Excellent: avoid disconnection

Missing: The value displayed on the interface is different from the value saved to the database by the final commit.

  1. CREATE OR REPLACE TRIGGERASSIGN_SVR_ID
  2. BEFOREINSERT ONSERVICE_REQUESTSFOREACH ROW
  3. BEGIN
  4. IF <strong>: NEW. SVR_IDIS NULL</Strong>OR<Strong>: NEW. SVR_ID <0 </strong>THEN
  5. SELECTSERVICE_REQUESTS_SEQ.NEXTVAL
  6. INTO: NEW. SVR_ID
  7. FROMDUAL;
  8. ENDIF;
  9. END;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.