有一个数据库:字段1,字段2共两个字段
存储操作:
query1.append;
query1.fieldbyname('字段1').asstring:=edit1.text;
query1.fieldbyname('字段2').asstring:=memo1.text;
query1.post;
字段2类型为:varchar(200)保存没有问题。
但字段2类型为:text或varchar(400)时保存出错了。
错误提示:NON-blob column in table required to perform operation!
请指教