PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Jak używać klasy pqxx::stateless_cursor z libpqxx?

Dziękuję @Eelke za komentarze do cname i hold .

Wymyśliłem, jak sprawić, by pqxx::stateless_cursor działał. Nie mam pojęcia, czy istnieje czystszy czy bardziej oczywisty sposób, ale oto przykład:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak wycofać dataframe.to_sql w Pythonie w SQLAlchemy?

  2. Postgres zwraca [null] zamiast [] dla array_agg tabeli łączenia

  3. wypełnij kolumnę ostatnią wartością z partycji w postgresql

  4. Chmura Barmana – Część 1:Archiwum WAL

  5. BŁĄD:nie można rozszerzyć pliku pg_tblspc/4815857/PG_11_201809051/16321:Brak miejsca na urządzeniu