Home Answers Viewqa SQL Processing stored procedure in MySQL

 
 


Mohammed Jani Pasha
Processing stored procedure in MySQL
1 Answer(s)      3 years ago
Posted in : SQL

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 jani.pasha14u@gmail.com

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 Pages:
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
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
Insert Data in Table Using Stored Procedure
into a table using stored procedure. Steps: 1.Create database: To create...;); 7.Step to call procedure: We are using CallableStatement to execute a stored...;} } The code of the stored procedure is given below
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 procedures
;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 stored procedure language,   Hi, Learn how to create Stored Procedure
Stored Procedure and Trigger
Stored Procedure and Trigger  hello, What is the difference between Stored Procedure and Trigger ?   hii, Triggers once defined are called automatically, there can be no explicit invocation Stored procedure has
What is Stored Procedure?
What is Stored Procedure?  What is Stored Procedure?   Hi, Here is the answer, A stored procedure is a named group of SQL statements that have been previously created and stored in the server database. Stored
Mysql Declare Procedure
Mysql Declare Procedure        Mysql Declare Procedure is used to define a local variable within... with Example The Tutorial grasp you an example from 'Mysql Declare Procedure
Mysql Alter Procedure
Mysql Alter Procedure     ... that is executed under one name. Mysql Alter Procedure is used to modify... illustrate an example from 'Mysql Alter Procedure'. To grasp Example, we create
Mysql Alter Procedure
Mysql Alter Procedure     ... that is executed under one name. Mysql Alter Procedure is used to modify and redefine... an example from 'Mysql Alter Procedure'. To grasp Example, we create a table
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
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
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:    
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
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
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
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 Area
; Run Procedure to calculate area: You can run MySQL stored procedure by using... of the rectangle.         Create Stored Procedure... MySQL Area      
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
to create a procedure Abc( ).The SQL stored procedure bodies contain... stored procedure returns you the records from 'Stu_Table... Create a Simple Procedure     
procedure
procedure   step by step procedure to build servlet or jsp in eclipse
SHOWING ERROR CODE 1064 WHILE TRYING TO EXECUTE PROCEDURE
TRYING A SP BUT IT IS NOT SAVING AND WORKING.DOES THE STORED PROCEDURE WORK PARTLY? BELOW IS MY QUERY DELIMITER$$ DROP PROCEDURE IF EXISTS `test_query`.`updt_cls...; END$$ DELIMITER; ALL THESE QUERIES OUTSIDE THE STORED PROCEDURE'S BODY
Mysql Loop in Procedure
Mysql Loop in Procedure       Loop in Procedure is a simple loop construct that enables an repeated... an example from 'Mysql Loop in Procedure'.To grasp this example we create
Mysql Loop in Procedure
Mysql Loop in Procedure       Loop in Procedure is a simple loop construct that enables... to understand an example from 'Mysql Loop in Procedure'.To grasp this example we create
procedure
procedure  write a procedure to update salary to 20% based on employee number
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
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
MySQL Books
. MySQL Stored Procedure Programming is being written by Steven Feuerstein... provide references to other volumes, as needed.    MySQL Stored... MySQL Books       List of many
Welcome to the MySQL Tutorials
) are supported in version MySQL 5.0. Stored Procedure is a set... account information?s are stored in mysql database tables. In this section we... MySQL Tutorial - SQL Tutorials   
Create a Simple Procedure
to create a procedure Abc( ).The SQL stored procedure bodies contain... stored procedure returns you the records from 'Stu_Table... Create a Simple Procedure     
MySQL Training ? Online Free MySQL Training
and Functions) are supported in version MySQL 5.0. Stored Procedure is a set... Management Statements In MySQL user account information?s are stored... MySQL Training ? Online Free MySQL Training   
Processing XML with Java
; } Processing XML with Java XML is cross-platform software, hardware... the information is well structured and stored and most importantly, it's all done... stand for "Java API for XML Processing". It is used for processing
JDBC CallableStatement Example
is give below which calls the stored procedure HI() from database student. At first create a database student in MySql Then Create a Stored procedure... statement provides a way to call the stored stored procedure of the database
JDBC Batch Processing Example
JDBC Batch Processing Example: Batch processing mechanism provides a way... with a call to the database. By using batch processing you can reduce the extra..., you can learn about Batch processing and these few methods. The addBatch
mysql table construction - SQL
mysql table construction  In MySql there is no pivot function. using a function or Stored Procedure, I want to loop through a column of data and create a another table that uses the row value as Column labels from the row
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
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
SQL IN Parameters
stored procedure is executed. Understand with Example... an example, which create a procedure 'abc' and accept input parameter. The input parameter allows the invoker to pass the data into the procedure
image upload and stored in database - JSP-Servlet
image upload and stored in database  How can i upload a image and store that image in a database  Hi Friend, Try the following code... connectionURL = "jdbc:mysql://localhost:3306/test"; ResultSet rs = null
MySQL Download
, and processing data in a database. It is downloadable from mySQL website (http... MySQL Download       The MySQL Download MySQL software is published under an open source license
Parallel Processing
application. Parallel Processing:   Parallel processing simultaneously... two or more processors. Parallel processing makes a program execution faster because there are more CPUs running it. Parallel processing requires two or more
Mysql List
Mysql List       Mysql List elaborate you an Query for listing databases, tables, Procedure... illustrate an example from 'Mysql List'. To grasp this example, We show you
Mysql List
Mysql List       Mysql List elaborate you an Query for listing databases,tables,Procedure,columns,usernames and its password. Understand with Example The Tutorial
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
What is procedure
What is procedure  What is procedure in computers? What are the primary categories of procedures
stored procedures
stored procedures  What are stored procedures

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.