oh if you bitshift remember DB doesnt have that as standard so use ->
`// bitshift 1.1
function bitRight( vValue, vStep )
vExport = vValue /( 2^vStep )
endfunction vExport
function bitLeft( vValue, vStep )
vExport = vValue *( 2^vStep )
endfunction vExport
and remember for that to compile a bit value
you'd go
vTotalValue = bitLeft(vValue1,24) + bitLeft(vValue2,16) + bitLeft(vValue3,8)
but to decode its
vValue3 = bitLeft(vTotalValue,8)
vValue2 = bitLeft(vTotalValue,16)
vValue1 = bitLeft(vTotalValue,24)
also for the string you'll want to search for but not include the "_" symbol or whatever you use
Anata aru kowagaru no watashi! 