Oracle® TimesTen In-Memory Database PL/SQL Packages Reference 11g Release 2 (11.2.2) E21645-06 |
|
|
View PDF |
The TT_DB_VERSION
package indicates the TimesTen version numbers.
This chapter contains the following topics:
Overview
Constants
Examples
The TT_DB_VERSION
package has boolean variables to indicate which TimesTen major release the package is shipped with.
The package for TimesTen 11g Release 2 (11.2.2) is as follows:
PACKAGE TT_DB_VERSION IS VER_LE_1121 CONSTANT BOOLEAN := FALSE; VER_LE_1122 CONSTANT BOOLEAN := TRUE; ... END TT_DB_VERSION;
The TT_DB_VERSION
package contains boolean constants indicating the current TimesTen release. These are shown in Table 9-1 for TimesTen 11g Release 2 (11.2.2).
Table 9-1 TT_DB_VERSION constants
Name | Type | Value | Description |
---|---|---|---|
|
|
|
Boolean that is |
|
|
|
Boolean that is |
See "Examples" in the UTL_IDENT
chapter for an example that uses both that package and TT_DB_VERSION
for conditional compilation.