This class represents a configuaration reader capable of reading options from database tables.
- CREATE TABLE properties (
- id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
- property VARCHAR(255) NOT NULL,
- value VARCHAR(255) NOT NULL
- );
- CREATE TABLE properties (
- id SERIAL PRIMARY KEY,
- property VARCHAR(255) NOT NULL,
- value VARCHAR(255) NOT NULL
- );