
Querying binary data types
I having trouble querying my table with binary datatypes. I have an ASP
session variable that contains the binary number and I'm trying to do the
following query:
"SELECT * FROM Wallet WHERE walletid = " & binaryid
binaryid is stored from a record set query of a binary. isArray(binaryid)
returns True and vartype returns byte. I know it's a byte array, but I
still can't access any of its data.
Does anyone know how to convert this binary number into a string?
Any advice would be appreciated! Thanks!
Tina