My setup is XE7, Unidac 6.1.3, MySQL 5.5.41
Table definition:
Code: Select all
CREATE TABLE `ss` (
`id` INT(10) NOT NULL DEFAULT '0',
`idType` INT(10) NOT NULL,
`customer` VARCHAR(50) NOT NULL,
`active` BIT(1) NOT NULL DEFAULT b'0',
PRIMARY KEY (`id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;
Code: Select all
cnn.DataTypeMap.AddDBTypeRule(myBit,ftBoolean);
Yet, upon making a call to UniQuery.RefreshRecord I encounter a 'Cannot convert type' error.
What's wrong?
(in this article it says that this(or a look-alike) bug should already be corrected)