摘自:http://topic.csdn.net/t/20020413/09/643456.html
loCaseInsensitive是完全匹配,loPartialKey是部分匹配
比如比如数据库里有KIIIIIIK,III,IIIIIII,IIII
你要查询III,如果是loPartialKey,那么以上所有的值都回被查询出来,否则只查询出III
loCaseInsensitive代表不区分字母大小写。
loPartialKey代表支持模糊查询。
-------------------------------------------------------------------
转自:http://bbs.firnow.com/dview42t28763.html
ADOQinvoice.Locate('invcode',editcode.Text,[loCaseInsensitive]);
我程序运行时老是提示undeclared identifier:'loCaseInsensitive',不知道哪里错了,请帮忙看看,不好意思我没分了,谢谢了
解答:uses DB; 即可;