You've already forked lazarus-ccr
22 lines
330 B
ObjectPascal
22 lines
330 B
ObjectPascal
![]() |
unit jdbutils;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, DB;
|
||
|
|
||
|
function FieldIsEditable(Field: TField): boolean;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
function FieldIsEditable(Field: TField): boolean;
|
||
|
begin
|
||
|
Result := (Field <> nil) and (not Field.Calculated) and
|
||
|
(Field.DataType <> ftAutoInc) and (not Field.Lookup);
|
||
|
end;
|
||
|
|
||
|
end.
|
||
|
|