Stored Proseedcakes

Embarrassingly, I don't have any handy examples lying about.

$sth = $dbh->prepare(qq{
  BEGIN 
    EXECUTE some_sql_function(:one, :two); 
  END;
});
$sth->bind_param(":one", $one);
$sth->bind_param_inout(":two", $two);
$sth->execute();
## do something with $two