> > After
> > k=SQLEXEC( ein_wert,"insert into tst (nam,famil) values ('jack', 'mueller')")
> >
> > check the value of k. If it is less than 0, use AERROR to see why the update did not take place.
> >
> > Why are you using SendUpdates and then setting UpdatableFieldList and UpdateNameList to blank.
> >
> > Regards
> > Tushar
>
>
> Hello,
>
> the value of k ist = 1.
> What should i insert in SendUpdates, UpdatableFieldList and UpdateNameList instead of blank ????
> Thx
One way to see what the values of these properties should look like is to
CREATE SQL VIEW Myview AS SELECT ... and then fill in the page 'Update Criteria'
It's all done by clicking on the options in the 'View Designer'
Then do this:
USE Myview
? CURSORGETPROP('UpdateableFieldList','myview')
?CURSORGETPROP('UpdateNameList','Myview')
to see what it should look like.
-Anders