Book Image

Oracle APEX Best Practices

Book Image

Oracle APEX Best Practices

Overview of this book

Have you ever wanted to create real-world database applications? In this book you're not only getting APEX best practices, but will also take into account the total environment of an APEX application and benefit from it."Oracle APEX Best Practices" will guide you through the development of real-world applications. It will give you a broader view of APEX. The various aspects include setting up APEX environment, testing and debugging, security, and getting the best out of SQL and PL/SQL.In six distinct chapters you will learn about different features of Oracle APEX as well as SQL and PL/SQL.Do you maximize the capabilities of Oracle APEX? Do you use all the power that SQL and PL/SQL have to offer? Do you want to learn how to build a secure, fully functional application? Then this is the book you'll need. "Oracle APEX: Best Practices" is where practical development begins!
Table of Contents (14 chapters)
Oracle APEX Best Practices
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 6. Deploy and Maintain

When you are done with the building phase of your application, you need to deploy it. Deployment can be done in several ways. One way is to create a packaged application. The deployment of a packaged application is very straightforward—simply follow the import wizard and you're done. However, the preparation to create a packaged application can be quite cumbersome.

Another way to deploy your application would be to separate all different components, such as database objects and JavaScript files, into a "deployment per type". This makes the deployment more complicated, but it is easier to patch or upgrade a small part of the application. In this way, the maintenance phase of your application will be easier. Both of these different approaches have their pros and cons.

Deploying your application to the users is only part of the job. After this step is done, your job is not over. At this moment, your users really start working with the application, and encounter...