Returns a callable statement object for the given SQL statement on the specified connection object.
Syntax
prepareCall( connection , sql )
connection.prepareCall( sql )
Parameters
connection
|
the connection object to use.
|
sql
|
the SQL statement to use.
|
Returns
callablestatement
|
the new callable statement object.
|
Example
cs = con.prepareCall( query )
|