HOW TO

Handle case-insensitive searches using the SearchExpression method.

Last Published: April 25, 2020

Summary

The "expression" argument for the SearchExpression method requires an SQL WHERE clause formatted string in order to return an appropriately filtered Recordset. By default, when querying string fields, the value included in the WHERE clause must be a string that has characters which match the case of the characters in the Recordset.

For example, "STATE_NAME = 'new jersey'" will not retrieve the New Jersey record if the value in the STATE_NAME field is stored in all upper case, or proper case; for example, "New Jersey".

This document provides two possible solutions for building case-insensitivity into an application.

Procedure

There are two options to help build an application which allows the user to enter query values using any case pattern. In either case, the SearchExpression method returns the correct records.

  • Option 1

    If it is known that the string values in the data tables will always be either lower-case, upper-case, or proper-case, but it is not known which case it will be for any particular record, build a WHERE clause along with OR operators to capture the correct record.
    Code:
    strField = txtFieldName.Text
    strValue = txtQueryValue.Text
    strWhere = strField & " = '" & strValue & "' OR " & _
    strField & " = '" & UCase(strValue) & "' OR " & _
    strField & " = '" & LCase(strValue) & "' OR " & _
    strField & " = '" & StrConv(strValue, vbProperCase) & "'"
    Set recs = mlyr.SearchExpression(strWhere)

  • Option 2

    Manipulate the data table so that all string values in all string fields are stored in all UPPER case. Then the application can convert the input string before querying. Also, the user can enter their value into the 'txtQueryValue' text box in any case combination they want, and the query will be successful.
    Code:
    strField = txtFieldName.Text
    strValue = UCase(txtQueryValue.Text)
    strWhere = strField & " = '" & strValue & "'"
    Set recs = mlyr.SearchExpression(strWhere)


Article ID:000005666

Software:
  • Legacy Products

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options

Discover more on this topic