转自:http://www.360doc.com/content/13/0524/09/7873422_287679198.shtml
使用
S:string;
qry2.SQL.add('select * from a where b='+s);
出现错误。
询问高手之后使用
qry2.SQL.add('select * from a where b='+QuotedStr(s));
正常。
QuotedStr(s)就是在s两边加上单引号。
quotedstr(edit1.text)直接可以说是在sql查询分析器里给字符串edit1.text加个单引号,可以完全抛开delphi的语法..