Struct oracle::ColumnInfo [] [src]

pub struct ColumnInfo { /* fields omitted */ }

Column information in a select statement

Examples

Print column information of emp table.

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

The output is:

 Name                           Null?    Type
 ------------------------------ -------- ----------------------------
 EMPNO                          NOT NULL NUMBER(4)
 ENAME                                   VARCHAR2(10)
 JOB                                     VARCHAR2(9)
 MGR                                     NUMBER(4)
 HIREDATE                                DATE
 SAL                                     NUMBER(7,2)
 COMM                                    NUMBER(7,2)
 DEPTNO                                  NUMBER(2)

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