DatabaseAutoIgnore
Prevent DatabaseAuto from registering tables whose
names match the specified regular expression.
Synopsis
Scope
This directive is only available for use in the local
(catalog.cfg) configuration file.
It will not affect any other website in any way.
This directive will not work in the global
(interchange.cfg) configuration file.
Description
This directive prevents the DatabaseAuto configuration
from automatically registering tables that match the specified regular
expression.
|
Warning
If this directive is used then it must be called before
DatabaseAuto in the local website's
configuration.
|
|
PostgreSQL users
Instead of using this directive,
you may prefer to make use of the DatabaseAuto
directive's "schema" parameter.
|
Example
The following prevents Interchange from registering tables from
non-default schemas,
which cause errors in PostgreSQL 7.4 and above:
DatabaseAutoIgnore ^sql_
DatabaseAuto dbi:Pg:dbname=database_name
|
See also