INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "DALE general options"
project: "Visual Eiffel"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: dale
class DALE_GENERAL_OPTIONS
creation

make
feature -- Options:

con_shadow_connections: BOOLEAN

ctg_enumerate_all_tables: BOOLEAN

ctg_enumerate_system_tables: BOOLEAN

ctg_caching_enabled: BOOLEAN
feature -- Default values for all above:

Dfl_con_shadow_connections: BOOLEAN

Dfl_ctg_enumerate_all_tables: BOOLEAN

Dfl_ctg_enumerate_system_tables: BOOLEAN
feature -- Settings:

make
-- creation procedure; initialize all values

set_con_shadow_connections (b: like con_shadow_connections)
-- enable/disable shadow connections for all databases
-- will be open after this moment

set_ctg_enumerate_all_tables (b: like ctg_enumerate_all_tables)
-- enable/disable enumeration of tables of any kind for all
-- TABLES catalogs will be created after this moment

set_ctg_enumerate_system_tables (b: like ctg_enumerate_system_tables)
-- enable/disable enumeration of system tables for all
-- TABLES catalogs will be created after this moment
end -- class DALE_GENERAL_OPTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES