What doing to Error while duplicate record when field name starting with numeric
Posted: Mon 16 Jul 2018 10:29
I got an SQL error -104 Token Unknow at line x char xx 404.
My Code are:-
procedure CopyButtonClick(Sender: TObject; AButtonIndex: Integer);
var
aField : Variant ;
i : Integer ;
begin
with qryWht do
begin
// create a variant Array
aField:= VarArrayCreate([0,Fieldcount-1],VarVariant);
// read values into the array
for i:= 1 to (Fieldcount-1) do
aField:= fields.Value ;
Append;
// put array values into new the record
for i:= 1 to (Fieldcount-1) do
fields.Value:= aField;
Post;
end;
end;
The cause of this came from one of my fieldname starting with 404 and after correct it, an error gone.
This will not happen for normal update (Insert, change data value, Post).
I used IBDAC 1.10.13 with D7
My Code are:-
procedure CopyButtonClick(Sender: TObject; AButtonIndex: Integer);
var
aField : Variant ;
i : Integer ;
begin
with qryWht do
begin
// create a variant Array
aField:= VarArrayCreate([0,Fieldcount-1],VarVariant);
// read values into the array
for i:= 1 to (Fieldcount-1) do
aField:= fields.Value ;
Append;
// put array values into new the record
for i:= 1 to (Fieldcount-1) do
fields.Value:= aField;
Post;
end;
end;
The cause of this came from one of my fieldname starting with 404 and after correct it, an error gone.
This will not happen for normal update (Insert, change data value, Post).
I used IBDAC 1.10.13 with D7