Comments - how can i transfer data use cursor

10 years, 7 months ago roberto spadim

well, i don't see a "must use cursor" to a single select fields from table...

check this example with c#... http://www.codeproject.com/Articles/43438/Connect-C-to-MySQL

it's using some commands at c#:

MySqlCommand cmd = new MySqlCommand(query, connection);

Create a data reader and Execute the command

MySqlDataReader dataReader = cmd.ExecuteReader();

Read the data and store them in the list

while (dataReader.Read()){

list[0].Add(dataReader["id"] + "");

list[1].Add(dataReader["name"] + "");

list[2].Add(dataReader["age"] + "");

}

close Data Reader

dataReader.Close();

close Connection

this.CloseConnection();

could this work for you? i'm thinking this question could be placed at a c# mysql forum, or something like it, since mariadb/mysql at client side are near the same api, just some queries (SQL COMMANDS) that must be rewrite, but most command runs without changes

another doubt... are you talking about pl/sql? or another mysql server side script language? the cursor and procedure are server side command? there's cursors at client/server side, and procedure at client/server side... i think the most common case is the client side cursor/procedure... the example i send is a nice start point, it have select,update,delete,insert, all you need to make some CRUD programs

i think this can help :)

 
10 years, 7 months ago bhdbing bhdbing

Thanks again Mr rspadim,you have give me a answer for my next question that hasn't been asked:). The question asked above is in server side,i search for something about that and find maybe in Mysql or Mariadb the cursor can't transfer data like Oracle,for another choice,may be i should use temporary table to fetch the result,so if i can make a dynamic temorary table to get the result? For my example, with differert column,i mean in above example, in procedure named as procedure_one,

select name,education,birthdate from emp where city='LA'; and open a cursor for fetch the data to data_table1(temporary table) and next time,i make another procedure named as procedure_two,with the sql sentence like:

select name,birthdate from emp where city='LA'; and i also open a cursor to put the result to data_table1. the second result data set has different column ,in the web reference, the data_table1 should be created before the procedure done,is it really? in Oracle, i just define a cursor and doesn't need to know the result structure,any select result can be send to the cursor,for example:

create or replace procedure test( rs out sys_refcurosr)

begin open rs for select * from emp; end;

no need to define the "rs" before,and MariaDB or Mysql can do the same thing?or must define a temporary table before?

 
10 years, 7 months ago roberto spadim

well everything implemented about cursors at server side is here (from what i know):

http://dev.mysql.com/doc/refman/5.6/en/cursors.html

i understood that you is trying to implement a 'global' cursor, in other words, thread (connection) 1 create the cursor and 'save' it, thread (conneciton) 2 read this cursor value

well i don't know if mysql/mariadb cursors are 'global' (like tables) or if they only exists at procedure scope, but if they aren't i just see the table solution for your problem... create a table, and 'share' this table between server-side procedures, yes the table must be dropped / created in every interaction (INSERT/DELETE/UPDATE/ALTER add column/ALTER drop column)

maybe the best thing to do is send a oracle script example here, and try to rewrite it to mysql, this is better (faster) than trying to answer theory problems (not pratical problems)

 
10 years, 7 months ago bhdbing bhdbing

ok i will make a example for that: create table emp ( name varchar(20), age number(2), city varchar(20) );

 
10 years, 7 months ago bhdbing bhdbing

in oracle create a procedurue:

create or replace procedure find( rs out sys_refcursor) is begin

open rs for select * from emp;

end;

 
10 years, 7 months ago bhdbing bhdbing

execute this procedure in TOAD i can get the all info about my employees,and how to translate it to MariaDB?

 
10 years, 7 months ago roberto spadim

and what you want with procedure find? what you will do next? how other thread will read it in oracle?

i think this is a bit 'impossible' since in mariadb the rs variable is only to function scope, not to global scope... but must check

use pastebin to send examples of code, it's better than this wiki markup

http://pastebin.com/

 
10 years, 7 months ago bhdbing bhdbing

sorry i can't connect to that site.

may be you can send your email address to me.my email address is bhdbing@163.com.

in my current db,we use many cursor for transfer data.so if i must create temporary table,that will be a big trouble to me. could you give me some advice? Thank you!

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.