#postgres #cursor #postgresql #sql

postgres-cursor

Cursor abstraction for PostgreSQL

5 releases (3 breaking)

Uses old Rust 2015

0.4.0 Dec 6, 2021
0.3.0 Dec 24, 2017
0.2.2 Aug 19, 2017
0.2.1 Jul 31, 2017
0.1.0 Jun 29, 2017

#945 in Database interfaces

Download history 11/week @ 2023-11-14 7/week @ 2023-11-21 29/week @ 2023-11-28 6/week @ 2023-12-05 6/week @ 2023-12-12 4/week @ 2024-01-02 1/week @ 2024-01-09 23/week @ 2024-01-23 8/week @ 2024-01-30 37/week @ 2024-02-06 37/week @ 2024-02-13 29/week @ 2024-02-20 43/week @ 2024-02-27

146 downloads per month

MIT license

15KB
275 lines

rust-postgres-cursor

A cursor type for use with PostgreSQL.

Example

extern crate postgres;
extern crate postgres_cursor;

use postgres::{Client, NoTls};
use postgres_cursor::Cursor;

// First, establish a connection with postgres
let mut client = Client::connect("postgres://jwilm@127.0.0.1/foo", NoTls)
    .expect("connect");

// Build the cursor
let mut cursor = Cursor::build(&mut client)
    // Batch size determines rows returned in each FETCH call
    .batch_size(10)
    // Query is the statement to build a cursor for
    .query("SELECT id FROM products")
    // Finalize turns this builder into a cursor
    .finalize()
    .expect("cursor creation succeeded");

// Iterate over batches of rows
for result in &mut cursor {
    // Each item returned from the iterator is a Result<Vec<Row>, postgres::Error>.
    // This is because each call to `next()` makes a query
    // to the database.
    let rows = result.unwrap();

    // After handling errors, rows returned in this iteration
    // can be iterated over.
    for row in &rows {
        println!("{:?}", row);
    }
}

Dependencies

~8–19MB
~318K SLoC