[][src]Struct hdbconnect::ConnectParams

pub struct ConnectParams { /* fields omitted */ }

An immutable struct with all information necessary to open a new connection to a HANA database.

An instance of ConnectParams can be created in various ways:

  • using the builder
  • using an implementation of IntoConnectParams
    • implementations are provided for URLs that are represented as String or as Url
  • the shortcut ConnectParams::from_file reads the URL from a file

The URL is supposed to have the form

<scheme>://<username>:<password>@<host>:<port>[<options>]

where

<scheme> = hdbsql | hdbsqls
<username> = the name of the DB user to log on
<password> = the password of the DB user
<host> = the host where HANA can be found
<port> = the port at which HANA can be found on <host>
<options> = ?<key> = <value> [{&<key> = <value>}]

Special option keys are:

client_locale: <value> is used to specify the client's locale
client_locale_from_env: if <value> is 1, the client's locale is read from the environment variabe LANG
tls_certificate_dir: the <value> points to a folder with pem files that contain the server's certificates; all pem files in that folder are evaluated
tls_certificate_env: the <value> denotes the environment variable that contains the server's certificate

The client locale is used in language-dependent handling within the SAP HANA database calculation engine.

If you want to provide the server certificate directly, then

Example

use hdbconnect::IntoConnectParams;
let conn_params = "hdbsql://my_user:my_passwd@the_host:2222"
    .into_connect_params()
    .unwrap();

Methods

impl ConnectParams
[src]

Returns a new builder for ConnectParams.

Reads a url from the given file and converts it into ConnectParams.

The ServerCerts.

The host.

The socket address.

Whether TLS or a plain TCP connection is to be used.

The database user.

The password.

The client locale.

Options to be passed to HANA.

Trait Implementations

impl IntoConnectParams for ConnectParams
[src]

impl Clone for ConnectParams
[src]

Performs copy-assignment from source. Read more

impl Debug for ConnectParams
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self