Subject RE: [IBO] Data source and auto insert Help
Author Claudio Valderrama C.
> -----Original Message-----
> From: Dave Bullar [mailto:comesailing@...]
> Sent: Jueves 17 de Mayo de 2001 14:17
>
> I am feeling particularly dim!
> I have a table with fields Namenum integer, Surname varchar(20),
> Firstname varchar(12)
> It is a newly created, empty, table.

[...]
> But I also want to put the 'namenum' in (which is the primary key).

If this is the PK defined in IB, IBO should detect it.


> If I say Namenum := 3 say then I get the error message 'Namenum
> is Readonly'

Did you set RequestLive to True?
I also expect that the record could disappear once posted, since it doesn't
meet the filter (the WHERE clause).

Usually, with an empty dataset, when you type information, it's interpreted
as an insertion. Have you tried
dataset.insert;
and then typing, just to see what happens?

C.