![]() |
![]() |
ALLBASE/SQL Pascal Application Programming Guide: HP 9000 Computer Systems > Chapter 10 Using Dynamic Operations![]() Differences between Dynamic and Non-Dynamic Preprocessing |
|
The authorization checking and section creation activities for non-dynamic and dynamic ALLBASE/SQL commands differ in the following ways:
In some instances, you could code the same SQL statement as either dynamic or non-dynamic, depending on whether you wanted to store permanent sections. A program that has permanently stored sections associated with it can be executed only against DBEnvironments containing those sections. Figure 10-1 illustrates how you create and use such programs. Note that the sections can be permanently stored either by the preprocessor or by using the ISQL INSTALL command. Programs that contain only SQL commands that do not have permanently stored sections can be executed against any DBEnvironment without the prerequisite of storing a module in the DBEnvironment. Figure 10-2 illustrates how you create and use programs in this category. Note that the program must still be preprocessed in order to create compilable files and generate ALLBASE/SQL external procedure calls. The following example shows an embedded SQL statement that is coded so as to generate a stored section before run time:
When you run the preprocessor on a source file containing this statement, a permanent section will be stored in the appropriate DBEnvironment. The following example shows an SQL statement that is coded so as to generate a temporary section at run time:
In this case, the SQL statement is stored in a host variable which is passed to ALLBASE/SQL in the PREPARE statement at run time. A temporary section is then created and executed, and the section is not stored in the DBEnvironment. In some cases, it may not be desirable to preprocess an SQL command before run time:
|