简体   繁体   中英

PostgreSQL: function returns multiple recordsets: how to read in c#?

Using this link http://www.sqlines.com/postgresql/npgsql_cs_result_sets I have created the example, but it does not work: There is my function:

 CREATE OR REPLACE FUNCTION show_cities_multiple() 
 RETURNS SETOF refcursor AS $$
    DECLARE
      ref1 refcursor; 
      ref2 refcursor;                             
    BEGIN
      OPEN ref1 FOR SELECT user_id, user_name FROM users;
      RETURN NEXT ref1; 

      OPEN ref2 FOR SELECT id, company FROM customers;
      RETURN NEXT ref2;      
    END;
    $$ LANGUAGE plpgsql;

The 1st loop reads recordsets names only and that is all what I can read from the function.

         NpgsqlConnection conn = new NpgsqlConnection(GetConnectionString());
                conn.Open();
                NpgsqlTransaction tran = conn.BeginTransaction();
                NpgsqlCommand command = new NpgsqlCommand("show_cities_multiple", conn);
                command.CommandType = CommandType.StoredProcedure;
                NpgsqlDataReader dr = command.ExecuteReader();
                while (dr.Read())
                {
                   Console.Write("{0}\n", dr[0]);
                }
// ----------there is output - only names of cursors recordsets
// <unnamed portal 1>
// <unnamed portal 2>

                dr.NextResult(); 
// But there is nothing to read, no additional recordsets
                while (dr.Read())
                    Console.Write("{0}\t{1} \n", dr[0], dr[1]);

                tran.Commit();
                conn.Close();

What is wrong? How to read multiple recordsets from a PGSQL function?

There are a few ways to work with cursors for different versions

how can I get cursor data with calling stored procedure in npgsql

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM