OracleType for a pl/sql function with a boolean return value? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T10:39:20Zhttp://stackoverflow.com/feeds/question/969601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/969601/oracletype-for-a-pl-sql-function-with-a-boolean-return-value0OracleType for a pl/sql function with a boolean return value?erikric2009-06-09T11:51:37Z2009-06-11T04:06:52Z
<p>Hi,</p>
<p>I'm developing this app where I have to call a function written in PL/SQL that returns a boolean. As I understand, bool is not a type in SQL, but in PL/SQL, so what will the return type for the function be?</p>
<p>command.Parameters.Add("P_RETURN", OracleType.???);</p>
<p>(For the record: I have no control over the PL/SQL end of things, so I am not able to rewrite the function) </p>
http://stackoverflow.com/questions/969601/oracletype-for-a-pl-sql-function-with-a-boolean-return-value/969644#9696443Answer by Adam Paynter for OracleType for a pl/sql function with a boolean return value?Adam Paynter2009-06-09T11:56:55Z2009-06-09T11:56:55Z<p>You could call the <code>SYS.diutil.bool_to_int</code> function with the result of calling your function. For example:</p>
<pre><code>SYS.diutil.bool_to_int(your_function(...))
</code></pre>
<p>From the documentation:</p>
<blockquote>
<p><code>bool_to_int</code>: translates 3-valued BOOLEAN TO NUMBER FOR USE
IN sending BOOLEAN parameter / RETURN VALUES
BETWEEN pls v1 (client) AND pls v2. since sqlnet
has no BOOLEAN bind variable TYPE, we encode
booleans AS false = 0, true = 1, NULL = NULL FOR
network transfer AS NUMBER</p>
</blockquote>
http://stackoverflow.com/questions/969601/oracletype-for-a-pl-sql-function-with-a-boolean-return-value/970102#9701020Answer by Mac for OracleType for a pl/sql function with a boolean return value?Mac2009-06-09T13:30:04Z2009-06-09T13:30:04Z<p>You have to convert the PL/SQL only BOOLEAN type to a SQL supported type. I know, this is painful : welcome to the Oracle world. <a href="http://htmldb.oracle.com/pls/otn/f?p=2853:4:4863128548814396::NO::P4%5FQA%5FID:225" rel="nofollow">Here is Steven Feuerstein reusable way to deal with it</a>.</p>
<p>As a side note, <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11%5FQUESTION%5FID:6263249199595" rel="nofollow">BOOLEANs are considered useless in SQL</a> (by Oracle anyway).</p>