在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1,直接使用值(数字或字符串) 数字:select * from cc where no=5 ;or select * from cc where no=’5’ 字符串:select * from cc where name=’dashan’
2,使用变量 var xx:string; sql:widestring; ……… 如果变量xx为纯数字字符串,则此两种语句都可以 sql:=’select * from cc where no=’+xx; or sql:=’select * from cc where no=’’’+xx+’’’’;(字符串变量要用单引号包围) 非纯数字字符串 sql:=’select * from cc where no=’’’+xx+’’’’;(字符串变量要用单引号包围)
3,使用参数 var qq:string; …… Self.ADOCommand1.CommandText:='insert into ceshi(ss) values (:xx)';//这里使用的参数xx 需要注意的是参数的使用顺序:首先使用参数(定义带参数的SQL语句),然后定义参数的值 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论