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
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to