The number of parameters does not match number of values for stored procedure?

By my count, your stored proc has 30 input parameters and 1 out parameter. If you want it to run, you're going to need to supply all 30 input parameters that your proc requires.

MSDN - OracleDatabase. AssignParameters. From that, I gather it's because you are passing an array of TWO (2) parameters (paramValues) and have only created ONE (1) InParameter of type DbType.

Int16. //FIRST AND ONLY IN PARAM _database. AddInParameter(insertCommand, "inParam", DbType.

Int16); ... object paramValues = new object { 1, 2 }; //2 PARAMETER VALUES Also, see the Using Statement because anything that is IDisposable should really be in a using statement.

The second item in the array is for the OUT param. I thought it needs to be set also. I removed it and called AssignParameter() with the array with 1 item.. same exception thrown!

– Kayes Oct 28 at 6:53 Well, I guess that wasn't it then... must be something in your SP, it might be helpful to post that then. – m-y Oct 28 at 12:40 Sorry for late reply. I've added the stored proc that I'm calling from DAAB.

– Kayes Oct 30 at 4:32.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions