Function prepareProcedure
Convenience function to create a prepared statement which calls a stored procedure.
OUT parameters are not currently supported. It should generally be possible with MySQL to present them as a result set.
Prototype
Prepared prepareProcedure(
								
  Connection conn,
								
  string name,
								
  int numArgs
								
);
							
						Throws
MySQLException if there are pending result set items, or if the server has a problem.
Parameters
| Name | Description | 
|---|---|
| name | The name of the stored procedure. | 
| numArgs | The number of arguments the stored procedure takes. | 
Example
debug(MYSQL_INTEGRATION_TESTS)
{
	import mysql