|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
is there a type definition similar to the oracle rowtype
From: AESYS S.p.A. [Enzo Arlati] (enzo.arlati
aesys.it)
Date: Wed Dec 28 2005 - 09:22:31 CST
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Is there in mysql 5 a datatype similar to the oracle rowtype ?
To better explain I include the following example which should be working on
oracle and don't run on mysql
CREATE PROCEDURE pTest()
BEGIN
declare c cursor for select * from table_test;
declare crec c%rowtype;
open c;
fetch c into crec;
close c;
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]