Subject | Re: [IBO] Record was not inserted |
---|---|
Author | Helen Borrie |
Post date | 2002-09-04T08:36:13Z |
At 10:18 AM 04-09-02 +0200, you wrote:
The likely source of the error is your ambiguous SQL. Because of the
correlated subselects, it isn't sufficient to alias only the subselected
tables, you must alias everything.
Also ensure that the subselected columns are properly marked in
ColumnAttributes as COMPUTED, since the insert may be failing because IBO
can't find those columns in the table's metadata when it compares its
Insert statement with the prepared statement.
regards,
Helen
>Hi,Dion,
>
>When I insert into a Detail dataset, I get the following error:- :"Record
>was not inserted" The procedure below is where the error seems to
>eminate(arrows indicate the exact spot). I am using v4.2E.
The likely source of the error is your ambiguous SQL. Because of the
correlated subselects, it isn't sufficient to alias only the subselected
tables, you must alias everything.
Also ensure that the subselected columns are properly marked in
ColumnAttributes as COMPUTED, since the insert may be failing because IBO
can't find those columns in the table's metadata when it compares its
Insert statement with the prepared statement.
regards,
Helen