You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2778 8e941d3f-bd1b-0410-a28a-d453659cc2b4
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.
|
|
|