sql >> Databáze >  >> RDS >> PostgreSQL

Jak používat třídu pqxx::stateless_cursor z libpqxx?

Děkujeme @Eelke za komentáře k cname a hold .

Přišel jsem na to, jak zajistit, aby pqxx::stateless_cursor fungoval. Nemám ponětí, zda existuje čistší nebo zjevnější způsob, ale zde je příklad:

pqxx::work work( conn );
pqxx::stateless_cursor<pqxx::cursor_base::read_only, pqxx::cursor_base::owned>
    cursor( work, "SELECT * FROM mytable", "mycursor", false );

for ( size_t idx = 0; true; idx ++ )
{
    pqxx::result result = cursor.retrieve( idx, idx + 1 );
    if ( result.empty() )
    {
        // nothing left to read
        break;
    }

    // Do something with "result" which contains a single
    // row in this example since we told the cursor to
    // retrieve row #idx (inclusive) to idx+1 (exclusive).
    std::cout << result[ 0 ][ "name" ].as<std::string>() << std::endl;
}


  1. MySql randomizuje posledních 10 řádků

  2. Kdy bych měl používat transakce MySQL?

  3. Proč se ora_rowscn změní bez aktualizace tabulky

  4. vyberte rownum z platu kde rownum=3;