Subject |
Re: Add variable As Table Field |
From |
Heinz Kesting <Nobody@Nowhere.com> |
Date |
Sat, 2 Feb 2019 23:36:33 +0100 |
Newsgroups |
dbase.getting-started |
Hi Norman,
beginAppend() is a method of the rowset, while you are trying to use it
as a method of the query.
Try changing this line
> q.beginAppend();q.rowset.fields['data'].value = cLine; q.rowset.save()
to
q.rowset.beginAppend();q.rowset.fields['data'].value = cLine;
q.rowset.save()
This should solve this issue.
Kind regards, Heinz
|
|