B4J Question How to execute an Oracle Stored Procedure, in B4J?

B4JExplorer

Active Member
Licensed User
Longtime User
Hi,

In Java, we have to use a CallableStatement. But after reading some of the mysql posts, it's not obvious how to do this with an Oracle procedure, in B4A or B4J.


The stored procedure in question, takes a single value, and returns a single value, something like -

sAccountNumber = GetAccountNumberFromCustomerNumber( sCustomerNumber )
 
Top