ai3rules
02-24-2006, 04:08 PM
Hi all,
I am checking for duplicates when updating a record using the following basic method.
modifyFieldQRY = "SELECT * FROM "&table&" WHERE "&order&"='"&modFieldName&"'"
compareModifyTable.open modifyFieldQRY, oConn
if not compareModifyTable.eof then
duplicate
end if
if compareModifyTable.eof then
update record
end if
That works fine. My only issue is, if for example I want to update the value "hello" to "Hello" it considers it a duplicate.
Is there a way to treat those two strings different based on case sensitivity?
Thank you in advance for any help.
I am checking for duplicates when updating a record using the following basic method.
modifyFieldQRY = "SELECT * FROM "&table&" WHERE "&order&"='"&modFieldName&"'"
compareModifyTable.open modifyFieldQRY, oConn
if not compareModifyTable.eof then
duplicate
end if
if compareModifyTable.eof then
update record
end if
That works fine. My only issue is, if for example I want to update the value "hello" to "Hello" it considers it a duplicate.
Is there a way to treat those two strings different based on case sensitivity?
Thank you in advance for any help.