OracleType for a pl/sql function with a boolean return value? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T10:39:20Z http://stackoverflow.com/feeds/question/969601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/969601/oracletype-for-a-pl-sql-function-with-a-boolean-return-value 0 OracleType for a pl/sql function with a boolean return value? erikric 2009-06-09T11:51:37Z 2009-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#969644 3 Answer by Adam Paynter for OracleType for a pl/sql function with a boolean return value? Adam Paynter 2009-06-09T11:56:55Z 2009-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#970102 0 Answer by Mac for OracleType for a pl/sql function with a boolean return value? Mac 2009-06-09T13:30:04Z 2009-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>