[转]Delphi中QuotedStr介绍及使用

转自: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的语法..

上一篇:HDU 1698 just a hook 线段树,区间定值,求和


下一篇:Linux 部署 iSCSI 客户端配置(Linux)