B
Bill
I'm trying to sort out what I can find in HELP
regarding the use of bit string functions, but so
far I've not found how to accomplish that.
It may very well be that I don't have the right
slant on setting the data type correctly?
Example:
If I have two 16-bit bit strings:
bitI = 0000000010000000
bitJ = 0001001010000001
and I want to know if the "1" bit in string
bitI is also present in bit-string bitJ.
What Dim is appropriate and what function
applies such that:
bitI somefunction bitJ = 1
?
Ultimately, I need to use this function in the
WHERE clause of a SQL query. (Actually,
it would likely be used in a filter expression
set at runtime.)
regarding the use of bit string functions, but so
far I've not found how to accomplish that.
It may very well be that I don't have the right
slant on setting the data type correctly?
Example:
If I have two 16-bit bit strings:
bitI = 0000000010000000
bitJ = 0001001010000001
and I want to know if the "1" bit in string
bitI is also present in bit-string bitJ.
What Dim is appropriate and what function
applies such that:
bitI somefunction bitJ = 1
?
Ultimately, I need to use this function in the
WHERE clause of a SQL query. (Actually,
it would likely be used in a filter expression
set at runtime.)