Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Where showMessage() is a stored procedure existing in myDB database.

Code Block
languagejs
string [] results = sqlCallStoredProcedureWithOutParams("myDB", "showMessage");

Where INSERTTEST is a stored procedure existing in myDB database, you can see it below:

Code Block
languagejs
string [] results = sqlCallStoredProcedureWithOutParams("myDB", "INSERTTEST", {"p_userid", "FLOAT", "IN", "1.22"}, {"p_username", "VARCHAR2", "IN", "username"}, {"p_createdby", "VARCHAR2", "IN", "admin"}, {"p_date", "TIMESTAMP", "IN", "28-APR-2015"});

...