|
NAMEWWWdb::ConfigPool - ConfigPools for WWWdbSYNOPSISuse WWWdb::ConfigPool; $oConfigPool = ConfigPool->new($cFileName, [ReadOnly => $bReadOnly,] [MustExist => $bMustExist]); $cValue = $oConfigPool->GetValue($cSection, $cEntry); @lValue = $oConfigPool->GetList($cSection, $cEntry); $cValue = $oConfigPool->SetValue($cSection, $cEntry, $cValue); $oConfigPool->DESTROY>(); DESCRIPTIONThe ConfigPool class...NoteCurrently the configfile is supported in the ini-file
style.
sections In this style, the entries can be placed in sections (and subsections). Sections are placed in [ and ] parens. This looks like the following: [section] or [Section subsection] entries The single entries are described in the form entry = value. Single-lined entries as well as multiple-lined entries are supported. They look like the following examples: entry = value entry = "value1 value2" entry = <<EOF value1 value2 value3 EOF comments Comments are always on a separate line. They start with a # or ;. Some examples: # This is a comment ; This is a comment too no_comment = # no comment Class Methods
Class Attributes
POD ERRORSHey! The above document had some coding errors, which are explained below:
Visit the GSP FreeBSD Man Page Interface. |