Processing stored procedure in MySQL

Processing stored procedure in MySQL

Dear All java with mysql developer.....

i need to convert my SQL procedure to MySQL database... here is my Stored procedure in SQL....

create or replace procedure INVNAMES (bno in number, inv_name1 out varchar2,inv_name2 out varchar2,
inv_name3 out varchar2, inv_name4 out varchar2, inv_name5 out varchar2, inv_name6 out varchar2,
inv_name7 out varchar2,inv_name8 out varchar2,inv_name9 out varchar2,inv_name10 out varchar2) as

begin
for var_rec in (select inv_code from billing where bill_no=bno)
loop
inv_name1:=var_rec.inv_code(1);
inv_name2:=var_rec.inv_code(2);
inv_name3:=var_rec.inv_code(3);
inv_name4:=var_rec.inv_code(4);
inv_name5:=var_rec.inv_code(5);
inv_name6:=var_rec.inv_code(6);
inv_name7:=var_rec.inv_code(7);
inv_name8:=var_rec.inv_code(8);
inv_name9:=var_rec.inv_code(9);
inv_name10:=var_rec.inv_code(10);
end loop;
end;


in this SP.. i am using 10 out parammeters........



so can anybody help me out please......if get solution please mail me on [email protected]

Regards
Jani Pasha
View Answers

May 28, 2010 at 4:59 PM

Hi Friend,

Please visit the following link:

http://www.roseindia.net/mysql/mysql5/stored-procedures-and-functions.shtml

Hope that it will be helpful for you.
Thanks









Related Tutorials/Questions & Answers:
Processing stored procedure in MySQL - SQL
Processing stored procedure in MySQL  Dear All java with mysql developer..... i need to convert my SQL procedure to MySQL database... here is my Stored procedure in SQL.... create or replace procedure INVNAMES (bno
stored procedure
stored procedure  what is stored procedure
Advertisements
stored procedure
stored procedure  on storing values to database using stored procedure it throws an error lyk ADODB.Command error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another
Records are not inserting in to main table while running the mysql stored procedure.
Records are not inserting in to main table while running the mysql stored procedure.  Hi, Im migrating procedures from oracle to MySql.In that procedure records are not inserted into main table from temp table.But im getting msg
Stored Procedure and Trigger
Stored Procedure and Trigger  hello, What is the difference between Stored Procedure and Trigger ?   hii,ADS_TO_REPLACE_1 Triggers once defined are called automatically, there can be no explicit invocation Stored
What is Stored Procedure?
What is Stored Procedure?  What is Stored Procedure?   Hi, Here is the answer,ADS_TO_REPLACE_1 A stored procedure is a named group of SQL.... Stored procedures accept input parameters so that a single procedure can
Insert Data in Table Using Stored Procedure
is the video tutorial of Creating and calling the Stored Procedure in MySQL Database... data into a table using stored procedure. Steps: 1.Create database... CallableStatement to execute a stored procedure into java code. The following syntax
receive a ResultSet from a stored procedure
receive a ResultSet from a stored procedure  How do I receive a ResultSet from a stored procedure
update date from stored procedure
update date from stored procedure  how to works on insert,update data from stored procedure.   Insert data using stored procedure
JPA 2.1 Stored Procedure Example
JPA 2.1 Stored Procedure Example - Lear how to call stored procedures from JPA program In this tutorial you will learn how to create Stored Procedure in MySQL database and then call the stored procedure in your JPA 2.1 based
creating and executing stored procedure using hibernate
creating and executing stored procedure using hibernate  I have to execute following query using hibernate DECLARE @i_STARTDATETIME DATETIME DECLARE @i_ENDDATETIME DATETIME DECLARE @o_ERRORCODE INT DECLARE @o_ERRORDESCRIPTION
image stored in mysql
image stored in mysql   how does an image store in mysql using java. gime an exam. code. thanks..   Insert Image in MySQL
Call Procedure
unit and  task. Stored Procedure can be compiled and executed... stored procedure?" ADS_TO_REPLACE_2 Create Table Stu_Table... Call Procedure      
Mysql Declare Procedure
Mysql Declare Procedure        Mysql Declare Procedure is used to define a local variable within... of the stored procedure, followed by the first Begin Statement.The Default statement
Stored Procedures and Functions
in version MySQL 5.0. Stored Procedure is a set of statements, which allow ease and flexibility for a programmer because stored procedure is easy to execute than reissuing the number of individual SQL statements. Stored procedure can call another
Write a C/C++ program to show the result of a stored procedure
Write a C/C++ program to show the result of a stored procedure   how to write this?? Write a C/C++ program to show the result of a stored procedure "PROCRESETMAIL" on database "USER_NOTIFY
How to convert Mssql Procedure into Mysql Procedure.
How to convert Mssql Procedure into Mysql Procedure.  Hello Sir, I have a mssql procedure and i need it to be converted to mysql ... Below is my mssql procedure code.. WITH CTE AS ( SELECT ROW
How to convert Mssql Procedure into Mysql Procedure.
How to convert Mssql Procedure into Mysql Procedure.  Hello Sir, I have a mssql procedure and i need it to be converted to mysql ... Below is my mssql procedure code.. WITH CTE AS ( SELECT ROW
Mysql Alter Procedure
Mysql Alter Procedure     ... that is executed under one name. Mysql Alter Procedure is used to modify... The Tutorial illustrate an example from 'Mysql Alter Procedure'. To grasp Example
supplying values to in parameters of stored procedure in ms sql and displaying out parameters
supplying values to in parameters of stored procedure in ms sql and displaying out parameters  I have to execute following procedure ALTER PROCEDURE [dbo].[get_date] @codeId int, @vardate as datetime OUTPUT AS SELECT
Mysql Alter Procedure
Mysql Alter Procedure     ... that is executed under one name. Mysql Alter Procedure is used to modify and redefine... The Tutorial illustrate an example from 'Mysql Alter Procedure'. To grasp Example, we
Error in MySQL Procedure Using JAVA Code
Error in MySQL Procedure Using JAVA Code  The following Java code (using Connector/J to create a stored procedure on MySQL 5.0) does not execute...("DELIMITER //\nCREATE PROCEDURE abdt (std INT)\nBEGIN\nSELECT attbegin, attend FROM
Stored procedures
Stored Procedure in MySQL at Stored Procedures and Functions in MySQL tutorial page...;hello, A stored procedure is a set of statements or commands which reside in the database. The stored procedure is precompiled. Each Database has it's own
callable statement,stored procedure for insert data and also for update data into oracle database using jsp
callable statement,stored procedure for insert data and also for update data... have one task to do soft parsing tl asked to do callable statement,stored procedure for inserting data into oracle database as bind variable and same
Fastest way to upload huge raw data in database - c#, Java or stored procedure
Fastest way to upload huge raw data in database - c#, Java or stored.... This procedure repeats every 15days. I need to know which method would be fastest to upload this data - Stored procedures, Java or c#. Why? What are the advantages
procedure
procedure   step by step procedure to build servlet or jsp in eclipse
passing xml created using DocumentBuilderFactory as input to oracle stored procedure using java JDBC
and it is to be send using JDBC. Stored procedure in oracle database will contains two... passing xml created using DocumentBuilderFactory as input to oracle stored procedure using java JDBC  I want to send the xml as input parameter
procedure
procedure  write a procedure to update salary to 20% based on employee number
Mysql Loop in Procedure
Mysql Loop in Procedure       Loop in Procedure is a simple loop construct that enables... The Tutorial helps you to understand an example from 'Mysql Loop in Procedure
Mysql Loop in Procedure
Mysql Loop in Procedure       Loop in Procedure is a simple loop construct that enables an repeated... you to understand an example from 'Mysql Loop in Procedure'.To grasp this example
MySQL Area
MySQL stored procedure by using the call method.ADS_TO_REPLACE_3... Stored Procedure: Query   delimiter... MySQL Area      
how to store image in folder and stored image path in mysql database using JSP
how to store image in folder and stored image path in mysql database using JSP  how to store image in folder and stored image path in mysql database using JSP
iBatis Stored Procedure Example
iBatis Stored Procedure Example   ... have created a stored procedure in "vin" database named as showData... procedure first open MySQL and create procedure as defined below:ADS_TO_REPLACE_1
stored procedures
stored procedures  What are stored procedures
stored procedures
stored procedures  What are stored procedures
What is procedure
What is procedure  What is procedure in computers? What are the primary categories of procedures
Call Procedure
Call Procedure        Procedure is a set of SQL statement that perform a logical unit and  task. Stored Procedure can be compiled and executed
Create a Simple Procedure
( ).The SQL stored procedure bodies contain of one or more statement nested inside a BEGIN and END keyword. In this Query stored procedure returns... Create a Simple Procedure     
Mysql List
Mysql List       Mysql List elaborate you an Query for listing databases,tables,Procedure,columns,usernames and its password. Understand with ExampleADS_TO_REPLACE_1
Mysql List
Mysql List       Mysql List elaborate you an Query for listing databases, tables, Procedure... The Tutorial illustrate an example from 'Mysql List'. To grasp this example, We
data processing is
data processing is   data processing is   Data processing is associated with commercial work. Data processing is also referred as Information System. Data processing is basically used for analyzing, processing
ModuleNotFoundError: No module named 'procedure'
ModuleNotFoundError: No module named 'procedure'  Hi, My Python... 'procedure' How to remove the ModuleNotFoundError: No module named 'procedure' error? Thanks   Hi, In your python environment you
Create a Simple Procedure
( ).The SQL stored procedure bodies contain of one or more statement nested inside a BEGIN and END keyword. In this Query stored procedure returns you... Create a Simple Procedure     
Illatis StepIn - Debugger for MySQL procedures
, Eclipse based IDE that makes debugging MySQL stored procedures and functions... Illatis StepIn - Debugger for MySQL procedures... of Illatis StepIn include: * Debug stored procedures, functions * Debug event
ModuleNotFoundError: No module named 'stored'
ModuleNotFoundError: No module named 'stored'  Hi, My Python... 'stored' How to remove the ModuleNotFoundError: No module named 'stored'... to install padas library. You can install stored python with following command
What is difference between a PROCEDURE & FUNCTION ?
What is difference between a PROCEDURE & FUNCTION ?  What is difference between a PROCEDURE & FUNCTION
how to write store procedure in sql
how to write store procedure in sql  How to write a store procedure in SQL Server
image Processing
image Processing   BCIF Image Compresssion Algorithm s alossless image Compression algorithm ,Pleas Help Me weather it can support only 24 bit bmp images
advantage of stored programs
advantage of stored programs  Which of the following is an advantage of stored programs? a) Reliability b)Reduction in operation costs c) The computers becoming general purpose D) All of the above E) None of these  
procedure with code - JavaMail
procedure with code  hi thank u for sending a suitable link. but in that no info about sent item folder creation. i want to place a SENT MAIL FOLDER like inbox. so all the mails that r send r srored in sent mails folder. pls

Ads