2. Select Data page, view table content;
3. Select Database page and refresh it by pressing F5 button;
4. Return to Data page and try to refresh data by pressing F5 button;
5. See error massage: SQL Error (1103): Incorrect table name ''

CREATE TABLE `rep_triggers` (
`gid` INT(3) UNSIGNED NOT NULL,
`trigger` VARCHAR(50) NOT NULL,
`name` VARCHAR(100) NOT NULL,
`url` VARCHAR(100) NULL DEFAULT NULL,
`mark` INT(1) UNSIGNED NOT NULL DEFAULT '0',
`mark2` INT(1) UNSIGNED NOT NULL DEFAULT '0',
`DTLM` INT(10) UNSIGNED NOT NULL,
PRIMARY KEY (`trigger`)
)
COLLATE='utf8_general_ci'
ENGINE=MyISAM;
Same problem in previous post, I guess.
CREATE TABLE `tezaver_metaphone ` (
`term` VARCHAR(400) NOT NULL,
`metaphone` TEXT NOT NULL
)
COLLATE='utf8_slovenian_ci'
ENGINE=MyISAM
;
/* SQL Error (1103): Incorrect table name 'tezaver_metaphone ' */
Note space after 'tezaver_metaphone ', that could be auto removed by Heidi, I guess.
I run into this error message using the following workflow. Let me know if this should be a new ticket instead.
SQL Error (1103): Incorrect table name ''
Version: 9.4.0.5174 / MariaDB server Steps to reproduce:
The heidi client is requesting "SELECT * FROM db
.`` LIMIT 1000;"
Proposed ideas:
dropped_table
doesn't exist Please login to leave a reply, or register at first.