DBA Data[Home] [Help]

PACKAGE: SYS.UTL_IDENT

Source


1 package utl_ident is
2 
3   /* A typical usage of these boolean constants is
4 
5          $if utl_ident.is_oracle_server $then
6            code supported for Oracle Database
7          $elsif utl_ident.is_timesten $then
8            code supported for TimesTen Database
9          $end
10    */
11 
12   /* an XE database is an Oracle server but an Oracle
13      server is not necessarily XE */
14   is_oracle_xe         constant boolean := FALSE;
15   is_oracle_server     constant boolean := TRUE;
16   is_oracle_client     constant boolean := FALSE;
17   is_timesten          constant boolean := FALSE;
18   is_oracle_forms      constant boolean := FALSE;
19 
20 end utl_ident;