I am trying to execute an oracle stored procedure using WebMatrix.Data from Microsoft's WebMatrix. I can get data just fine with normal select statements...but I can't for the life of me figure out how to execute an oracle proc. It's not executed like a T-SQL proc I know that. Please help!

I'm trying to get a single value back. I'm just trying to prove that I can access an oracle stored proc with webmatrix.data. It is a query so I'm not sure db.Execute would work since that is for non-queries.

here's the code:

 CREATE OR REPLACE PROCEDURE COUNT_JOB_HISTORY
 (
   reccount OUT NUMBER
 )
 IS
   BEGIN
     SELECT COUNT(*) INTO reccount
     FROM JOB_HISTORY;
   END COUNT_JOB_HISTORY;

Here's the .Net code

    public static dynamic GetJobHistoryCount()
    {
        var db = Database.OpenConnectionString(connectionString, providerName);

        var jobs = db.QueryValue("exec COUNT_JOB_HISTORY(:0)", "count");

        return jobs;
    }

It blows up as an ORA-00900 : invalid SQL statement

Thanks!

link|improve this question

38% accept rate
feedback

1 Answer

you need to use db.Execute() (see http://msdn.microsoft.com/en-us/library/webmatrix.data.database.execute%28v=vs.99%29.aspx)...

Regardings the procedure itself and dealing with params/result it is hard to tell because you did not provide enough information like

What exactly does the procedure return ? one value ? one row ? a cursor ?

EDIT- after the OP showed the Stored Procedure:

Every Stored Procedure is a "Non-Query" - WebMatrix does not know anything about what happens inside the Stored Procedure... I never used WebMatrix... so this is only a guess:

int reccount = 0;
db.Execute ("COUNT_JOB_HISTORY", reccount);


or perhaps

db.Execute ("COUNT_JOB_HISTORY", ref reccount); 

EDIT 2 - another try:

db.Execute ("BEGIN COUNT_JOB_HISTORY(:0); END;", reccount);
link|improve this answer
Hello! I edited my original question to be more specific. Hope this helps! Thanks again for any help you can give – cpeele00 Jul 26 '11 at 18:47
see my edit for executing the SP – Yahia Jul 26 '11 at 18:57
Yahia, thanks but it's still throwing that same error. :-( – cpeele00 Jul 26 '11 at 19:03
see my next edit – Yahia Jul 26 '11 at 19:06
Okay! We are definately getting there! Thanks to you it stopped throwing that error! :-) Now, however since it's returned as a dynamic collection, it's only outputting once char. So instead of returning the number 10, it only returns the number 1. Any thoughts? Thanks again ! – cpeele00 Jul 26 '11 at 19:21
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.