Top "Procedure" questions

A procedure is a subroutine that does not return a value.

What is the difference between a "function" and a "procedure"?

Generally speaking, we all hear about the functions or procedures in programming languages. However, I just found out that I …

function terminology procedure
How to call a mysql stored procedure, with arguments, from command line?

How can I call a stored procedure from command line? I have a procedure: CREATE DEFINER=`root`@`localhost` PROCEDURE `insertEvent`(…

mysql command-line call procedure
set serveroutput on in oracle procedure

I've created a simple procedure. In this procedure i want to output some data. However where ever i put set …

oracle procedure
Creating a procedure in mySql with parameters

I am trying to make a stored procedure using mySQL. This procedure will validate a username and a password. I'm …

mysql parameters procedure
Execute stored procedure with parameters

I have stored procedure and should get its result. From debugging of Java part: return getJdbcTemplate().call(newCallableStatementCreator(inParams), getDeclaredParameters()); …

parameters plsql execute procedure
ORA-00900: invalid SQL statement- when run a procedure in oracle 10g

I am using Oracle 10g database and trying to run a procedure using SQL commands. create or replace procedure "exam" …

oracle stored-procedures plsql ide procedure
Are there any suggestions for developing a C# coding standards / best practices document?

I'm a recent AI graduate (circa 2 years) working for a modest operation. It has fallen to me (primarily as I'm …

c# standards procedure
the functions (procedures) in MIPS

I'm new in MIPS language and I don't understand how the functions (procedures) in the MIPS assembly language work. Here …

function mips procedure
PL/SQL: numeric or value error: character string buffer too small %ROWTYPE

I don't know if I am missing something but what I am doing is: I have a function that returns …

oracle plsql procedure
PL/SQL Inserting 1 row for each result in a select

I am writing a PL/SQL Procedure that performs a select based on input variables and then inserts a row …

plsql for-loop insert procedure