![]() |
Sergey Kornilov admin 11/18/2008 |
CREATE TABLE `webreports` ( `rpt_id` INT NOT NULL AUTO_INCREMENT , `rpt_name` VARCHAR(45) NOT NULL , `rpt_title` TEXT NULL , `rpt_cdate` DATETIME NOT NULL, `rpt_mdate` DATETIME NULL, `rpt_content` LONGTEXT NOT NULL , `rpt_owner` VARCHAR(100) NOT NULL , `rpt_status` ENUM""public","private") NOT NULL DEFAULT "public", `rpt_type` ENUM("report","chart") NOT NULL, PRIMARY KEY (`rpt_id`)) ENGINE = MyISAM;
|
S
|
saflowers author 11/19/2008 |
Thanks Sergey, that allowed me to continue without error and access the web reporting tool. Note: the supplied field definition: `rpt_status` ENUM""public","private") NOT NULL DEFAULT "public" - should read: `rpt_status` ENUM ("public","private") NOT NULL DEFAULT "public" |
![]() |
Sergey Kornilov admin 11/19/2008 |
I'm afraid this also has something to do with MySQL version. |
T
|
taumic 11/19/2008 |
Thanks Sergey, that allowed me to continue without error and access the web reporting tool. Note: the supplied field definition: `rpt_status` ENUM""public","private") NOT NULL DEFAULT "public" - should read: `rpt_status` ENUM ("public","private") NOT NULL DEFAULT "public" I don't know if this related, however as I create reports and charts the rpt_name, rpt_title and rpt_status fields are not populated. I must manually go into the database and enter values into these fields in order for them to appear and run within the reporting tool.
|
S
|
saflowers author 11/21/2008 |
Thanks Mike. |