Subject | cannot insert a new row |
---|---|
Author | newgen_315 |
Post date | 2005-07-01T11:52:53Z |
Hi all,
I need help badly, I do not understand this problem at all. the error
is 'Cannot insert a new row' which seems to occur after the database
is created.
I even install FB1.5 server, removed empbedded server, same problem.
has anyone seen this before
help please
Daniel
procedure TIB_Dataset.Insert;
begin
if not Prepared then
SysPrepare;
if CanInsert then
SysInsert
else
begin
SysStateChanged;
==> raise EIB_DatasetError.Create( E_Cannot_Insert_Row );
end;
end;
I need help badly, I do not understand this problem at all. the error
is 'Cannot insert a new row' which seems to occur after the database
is created.
I even install FB1.5 server, removed empbedded server, same problem.
has anyone seen this before
help please
Daniel
procedure TIB_Dataset.Insert;
begin
if not Prepared then
SysPrepare;
if CanInsert then
SysInsert
else
begin
SysStateChanged;
==> raise EIB_DatasetError.Create( E_Cannot_Insert_Row );
end;
end;