There is a field ~ "CodeTypNM" VARCHAR(30) ~ in a table ~ SysCode
i want to insert a value '機型名稱與序號b對應表' into the field "CodeTypNM"
if i format a "insert" sql command ~ it's work
but if i want to use the follwing code to insert the
with sysCode do
begin
...
CodeTypNM := '機型名稱與序號b對應表';
....
end;
dm.aureliusManager.Save(sysCode);
the value in "CodeTypNM" will be '機型名稱與'
Can anyone tell why ? TKS