Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL bitwise operators?
Yes. In the package utl_raw there is:
FUNCTION bit_and(r1 IN RAW,
r2 IN RAW) RETURN RAW;pragma RESTRICT_REFERENCES(bit_and, WNDS, RNDS, WNPS, RNPS);
FUNCTION bit_or(r1 IN RAW,
r2 IN RAW) RETURN RAW;pragma RESTRICT_REFERENCES(bit_or, WNDS, RNDS, WNPS, RNPS);
FUNCTION bit_xor(r1 IN RAW,
r2 IN RAW) RETURN RAW;pragma RESTRICT_REFERENCES(bit_xor, WNDS, RNDS, WNPS, RNPS);
FUNCTION bit_complement(r IN RAW) RETURN RAW; pragma RESTRICT_REFERENCES(bit_complement, WNDS, RNDS, WNPS, RNPS);
HTH
Peter
.
bit_and - Function which preforms a logical and bit_or - Function which preforms a loical or
Julie Anne Jarrard wrote in message <37013370.6F2AF2D8_at_aug.edu>...
>Is anyone aware of any bitwise operators (and, or) in PL/SQL? I have
>been unable to find anything in my reference manuals.
>
>
>Thanks,
>
>Julie Jarrard
>jjarrard_at_aug.edu
Received on Tue Mar 30 1999 - 19:06:20 CST
![]() |
![]() |