Hi,
First off thanks for these great tools. I'm just starting with them but they look great. I'm not even remotely an SQL head so I slowly went through the whole MySQL setup and created the first database without issues. The help file says to use the contents of the 'schema' file for the events database which I presumed was fw.v106.sql . I doesn't create the Schema table entry. I won't even pretend to know what it does but I compared that file to the hsc.v104.sql that had worked earlier and found that the ` marks where missing from around the 2 Schema arguments, adding them seems to have done the trick.
--Schema version
CREATE TABLE `schema` (
vseq INT UNSIGNED NOT NULL,
ctime DATETIME NOT NULL,
stype VARCHAR(10) NOT NULL,
PRIMARY KEY (vseq)
);
INSERT INTO `schema` (vseq, ctime, stype) VALUES ('106', now(), 'fw');