They work here, using the same provider. I am using Oracle 11g and I have a couple of test sps such as this:
CREATE PROCEDURE ADDITEMTOORDER(
OrderId NUMBER,
BEGIN
/
CREATE PROCEDURE ADDITEMTOORDER(
OrderId NUMBER,
ItemId NUMBER,
Quantity NUMBER)
ASBEGIN
select NULL from dual;
END;/