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

Thread: How to varify ???

  1. #1
    Join Date
    Feb 2007
    Posts
    1

    How to varify ???

    Using Foms6i :

    On the BUTTON click , how i can verify the login name n password from the database table , n upon that it allows to login , & it transfers after login-in to the other form ..wut will the coding for that !

    please help meee out!!!!!!!

  2. #2
    Join Date
    Nov 2004
    Location
    Mumbai, India
    Posts
    452
    Code:
    Select username,password from user_password_table into uname,pwd;
    if upper(uname)=upper(:txt_username) and upper(pwd)=upper(:txt_password) then
       call_form (your_other_form_name)
    else
       raise form_trigger_failure;
    end if;
    There are three kinds of lies: Lies, damned lies, and benchmarks...

    Unix is user friendly. It's just very particular about who it's friends are.

    Oracle DBA

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