I have read some PL SQL programming books, and they recommend me to group procedures, functions, cursors, and so on in a package. Packages provide modularity and information hiding, which is the OO design. However, I'm just familiar with stand alone procedures. Would anyone kindly provide some examples in code and how to call package from the client? I'm currently using ODP.NET as a data access in client application. Thank you.
|
|
There is still the good practice of using packages instead of just declaring functions with global scope. If you have packages, it can provide extensibility, if you happen to want later to add functions with the same context, and it can make your procedures more legible, as it states from which library (package) is the function called from. |
||
|
|
|
|
You put code for the procedures, functions etc in the package body, together with declarations for private variables. You put the declarations of those procedures and functions, as well as public variables, in the package. Only the latter are accessible from outside the package, and for that you need to prefix their names with the package name and a dot. You can define data stucture types for this package too: if public procedures use them as input or output, then they must be made public; if not, then you're free to choose. Example code, from memory and not tested, so there could be bugs in it:
Use Packages have an extra advantage over plain functions and procedures: you can overload their names, have several different procedures with the same name but with different parameter types in the same package, and the proper function will be called depending on what parameter types you use. By contrast, the name for a standalone function or procedure must be unique. HTH. |
||
|
|
|
|
If there is only one procedure in a package, it seems like no need to have package. I'm still not clear what type of procedures or functions that I have to group in a package. Would you mind telling me what procedures should I group into a package? |
||
|
|
|
To follow up, you might have a standalone like
which you call with "foo('bar');" That would become a package and a package body as
which you call with "my_package.foo('bar');" For a single procedure, using a package might not add much clarity. But if you're dealing with lots of functions and procedures, it's much cleaner. |
||
|
|
|
|
If you're familiar with calling stand alone procedures, calling procedures in packages is not very different. Just prefix the procedure name with the package name like this: package_name.procedure_name. |
||
|
|
