//! Interface to [PostgreSQL](https://www.postgresql.org/) of ConcatSQL.
pub
use crateResult;
use crateConnection;
/// Open a read-write connection to a new or existing database.
///
/// See the documentation for [Config](https://docs.rs/postgres/latest/postgres/config/struct.Config.html) for information about the connection syntax.
///
/// # Examples
///
/// ```rust
/// let params = "host=localhost user=postgres password=postgres";
/// let conn = concatsql::postgres::open(¶ms).unwrap();
/// ```