请问一下Locate('姓名',‘王’,[loCaseInsensitive])
中的
[loCaseInsensitive]参数什么意思并且还有什么参数在哪可以有明细的说明

解决方案 »

  1.   

    还有
    [loPartialKey] 就是查找姓名字段里头,包含“王”的记录。help里面有说明吧
      

  2.   

    loCaseInsensitive表示精确查询。
    loPartialKey表示模糊查询
      

  3.   

    不加[loCaseInsensitive]这个参数就已经是精确了
    loCaseInsensitive只是不分大小写的查询,不是精确
      

  4.   

    loCaseInsensitive 表示不區分大小寫
    loPartialKey 表示模糊查詢loCaseInsensitive Key fields and key values are matched without regard to case.
    loPartialKey Key values can include only part of the matching key field value; for example, 'HAM' would match both 'HAMM' and 'HAMMER.'
      

  5.   

    [loCaseInsensitive ]  表示不分大小写
    [loPartialKey]    表示模糊查询
    []                   没有参数,精确查询