Subject cannot insert row
Author newgen_315
Sorry for the double post but I am desperate,

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.

It's created with a sql script which I have been using forever
I even install FB1.5 server, removed empbedded server, same problem.
request live is set to true for all iboqueries

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;