Struct hdbconnect::PreparedStatement[][src]

pub struct PreparedStatement { /* fields omitted */ }

Allows injection-safe SQL execution and repeated calls of the same statement with different parameters with as few roundtrips as possible.

Methods

impl PreparedStatement
[src]

Descriptors of the parameters of the prepared statement, if any.

Converts the input into a row of parameters for the batch, if it is consistent with the metadata.

Executes the statement with the collected batch, and clears the batch.

Sets the auto-commit of the prepared statement's connection for future calls.

Trait Implementations

impl Debug for PreparedStatement
[src]

Formats the value using the given formatter. Read more

impl Drop for PreparedStatement
[src]

Frees all server-side ressources that belong to this prepared statement.

Auto Trait Implementations