首页 相关文章 在delphi字符中包括单引号(')

在delphi字符中包括单引号(')

  Delphi中,用interbase控件访问InterBase数据库,并设置Dialect 3模式访问时,SQL语句中引用的字符型字段需要放在单引号(')内,如要在Delphi的IBQuery中实现该操作:

  select * from MyTable where name='zmxjh'

  可以这样做:

   SQL := 'select * from MyTable where name= ';
   SQL := format(SQL,['zmxjh']);

  ('')即可在字符串包括单引号.
  

...[ 查看全文 ]

2016-02-19 标签:

在delphi字符中包括单引号(')的相关文章

手机页面
收藏网站 回到头部