ACC: Explanation of "Option Compare Database" Statement
This article was previously published under Q98227
Moderate: Requires basic macro, coding, and interoperability skills.
SUMMARY
The description of the Option Compare Database statement in the Microsoft
Access "User's Guide" is not very clear. The following is the description
from the guide:
Comparison is based on the characters' relative position according to
the sort order specified when the database was created or compacted.
MORE INFORMATION
The Option Compare statement can be used to make comparisons based on
binary value, text value, or values that are defined in the Options dialog
box. (To modify the Options dialog box, click Options on the View menu.)
For example, if you use the Option Compare Binary statement, the expression "a" > "Z" would be true, because the ASCII value of "a" is greater than the ASCII value of "Z". However, if you use the Option Compare Text statement, the expression would be false, because "Z" comes after "a" in the alphabet. If you use the Option Compare Database statement, the expression will be true or false depending on the New Database Sort Order setting you select in the Items box of the Options dialog box. The Option Compare statement can also affect the results of the Instr() function. For example, the following function finds the first tab character in a string:
For another example, the following function returns the position of the
first uppercase 'c' in the string:
If mystr$="1<space>abc<tab>ABC", the function will return the following
results, depending on which Option Compare statement is used:
Option Compare Database: 5 Option Compare Text: 5 Option Compare Binary: 9 APPLIES TO
| Article Translations
|
Back to the top
