Hi,
I have a testtable with a few types of boolean. - MySQL and I work with mydac from devart.
CREATE TABLE `systesttable` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Bezeichnung` varchar(45) DEFAULT NULL,
`bol1` tinyint(1) DEFAULT '0',
`bol2` enum('yes','no') DEFAULT 'no' COMMENT 'Hier wird mit 0 = false und true = 1 gearbeitet',
`bol3` enum('true','false') DEFAULT 'false',
PRIMARY KEY (`ID`),
UNIQUE KEY `ID_UNIQUE` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Diese Table dient nur Tests während der Entwicklung und enthält keine vom Programm genutzte Daten';
how to get this in a Checkbox Column, so that I only have to click for check and not checked. That does not work.
regards
Jörg alias mcinternet



Find content
Male
