postgresql_commands

Crates.iopostgresql_commands
lib.rspostgresql_commands
version0.17.3
sourcesrc
created_at2024-04-03 04:14:50.49313
updated_at2024-11-12 20:20:08.837305
descriptionPostgreSQL commands for interacting with a PostgreSQL server.
homepage
repositoryhttps://github.com/theseus-rs/postgresql-embedded
max_upload_size
id1194740
size403,213
Brian Heineman (brianheineman)

documentation

README

PostgreSQL Commands

ci Documentation Code Coverage Latest version License Semantic Versioning

A library for executing PostgreSQL command line utilities.

Examples

use postgresql_commands::Result;
use postgresql_commands::psql::PsqlBuilder;

fn main() -> Result<()> {
    let psql = PsqlBuilder::new()
        .command("CREATE DATABASE \"test\"")
        .host("127.0.0.1")
        .port(5432)
        .username("postgresql")
        .pg_password("password")
        .build();

    let (stdout, stderr) = psql.execute()?;
    Ok(())
}

Feature flags

The following features are available:

Name Description Default?
tokio Enables the use of tokio commands No

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 481

cargo fmt