Case Insensitive Search

I need to search Domino names.nsf for Users’ databases in a case insensistive manner.

However, the databases are like, John Wright, Alex Brown etc. ,i.e, with initial capital letters.

I am using db.search(FirstName = “John”|LastName=“John”). I want the search to be case insensitive.

Any help would be appreciated.

Thanks

Subject: Case Insensitive Search

I have found out a way to help me sort out this issue.

For those who need help on a similar issue,here is a sample code :

@UpperCase(FirstName)=@UpperCase(“John”)

insert this in the formula string.

it works perfectly well…