2
As far as I know, Oracle does not provide a valueType of the kind Boolean. I am working a short time with Oracle and would like to know what is the best solution to "simulate" a true/false value in the Oracle database?
CHAR(1) (Y/N) ?
INTEGER (0/1) ?
I hadn’t read about the RAW. I also did some research before, and so I asked the question to see if anyone has ever had this kind of situation, and if they have ever had a problem using char or number. Until then, CHAR(1) has been the most indicated. I’ll wait to see if anyone else can add anything else. Thanks for the tip.
– DeRamon