What is the difference between bind and declare variable in pl/sql?What is the difference between number,integer, pls_integer and binary integer?

Showing Answers 1 - 6 of 6 Answers

jamesravid

  • Jul 18th, 2007
 

Bind variables are command line parameters.
whereas declare variables are variables local variables declared with in the pl/sql code.

scope of declare variables is within the procedure you can't use them outside of the pl/sql code. But bind variables are valid till the session is valid

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions