Struct oracle::ColumnInfo [] [src]

pub struct ColumnInfo { /* fields omitted */ }

Column information in a select statement

let conn = oracle::Connection::new("scott", "tiger", "").unwrap();
let mut stmt = conn.execute("select * from emp", &()).unwrap();
for info in stmt.column_info() {
   println!("{:-30} {:-8} {}",
            info.name(),
            if info.nullable() {""} else {"NOT NULL"},
            info.oracle_type());
}

Methods

impl ColumnInfo
[src]

[src]

Gets column name

[src]

Gets Oracle type

[src]

Gets whether the column may be NULL. False when the column is defined as NOT NULL.

Trait Implementations

impl Clone for ColumnInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for ColumnInfo
[src]

[src]

Formats the value using the given formatter. Read more