Delphi中,用interbase控件访问InterBase数据库,并设置Dialect 3模式访问时,SQL语句中引用的字符型字段需要放在单引号(')内,如要在Delphi的IBQuery中实现该操作:
select * from MyTable where name='zmxjh'
(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/bianchengyuyan/)可以这样做:
(本文来源于图老师网站,更多请访问https://m.tulaoshi.com/bianchengyuyan/) SQL := 'select * from MyTable where name= ';
SQL := format(SQL,['zmxjh']);
('')即可在字符串包括单引号.