Struct cassandra_cpp::PreparedStatement [] [src]

pub struct PreparedStatement(_);

A statement that has been prepared against at least one Cassandra node. Instances of this class should not be created directly, but through Session.prepare().

Methods

impl PreparedStatement
[src]

[src]

Creates a bound statement from a pre-prepared statement.

[src]

Gets the name of a parameter at the specified index.

[src]

Gets the data type of a parameter at the specified index.

Returns a reference to the data type of the parameter. Do not free this reference as it is bound to the lifetime of the prepared.

[src]

Gets the data type of a parameter for the specified name.

Returns a reference to the data type of the parameter. Do not free this reference as it is bound to the lifetime of the prepared.

Trait Implementations

impl Debug for PreparedStatement
[src]

[src]

Formats the value using the given formatter. Read more

impl Send for PreparedStatement
[src]

impl Drop for PreparedStatement
[src]

[src]

Frees a prepared statement

Auto Trait Implementations