DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: Need assistance with Forms

  1. #1
    Join Date
    Apr 2001
    Location
    Germantown, MD
    Posts
    14
    I'm designing a class registration system for a project for school. One of the requirements is to be able to add the instructors through the form but the instructor id number must be system assigned and increment by a determined value, call it 1, for the sake of arguments. I've tried the when-new-record function but haven't been able to get the code right to make it work. Any assistance would be much appreciated.

  2. #2
    Join Date
    Nov 1999
    Location
    Kuwait
    Posts
    122

    Exclamation hey,

    Well I didn't got you completly...Are u selecting it from a system sequence? or whats the case..if you say in detail then may be i will be able to help you...or if u can send me the form i willl be try to look into it..!

    Take care,
    NK

  3. #3
    Join Date
    Apr 2001
    Posts
    17
    Hi,

    Use pre_insert on the block:

    select nvl(max(inst_id),0)+1 into :inst_id from instructors ;


  4. #4
    Join Date
    Aug 2000
    Posts
    462
    as long as only one person will ever be connected to your form at a time (single user application), then abdali's solution is ok. Otherwise, don't do that. You'll eventually end up with duplicates (or errors depending upon whether uniqueness will be enforced by DB).

    If you need to deal with multiple connections, use a sequence, as suggested by nabeel. A sequence is a DB object which guarantees unique, incremented values no matter how many people access it simultaneously. To create a sequence:

    create sequence myseq nocache;

    to use the values, do as abdali suggested, and update the value in the pre-insert trigger on that block:

    select myseq.nextval into :myblock.inst_id from dual;



    Good luck!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width