No BOOLEAN field in Firebird?Boolean field is available since Firebird 3.0.For versions prior to 3.0, but you have several alternatives:1. use char(1)2. use smallint3. use domains
procedure TForm1.KDBGrid1DrawCell(Sender: TObject; ACol, ARow: Integer; R: TRect; State: TKGridDrawState);begin KDBGrid1.CellPainter.CheckBox := True;end;