Struct oracle::ColumnInfo[][src]

pub struct ColumnInfo { /* fields omitted */ }

Column information in a select statement

Examples

Print column information of emp table.

let conn = Connection::connect("scott", "tiger", "", &[])?;
let mut stmt = conn.prepare("select * from emp", &[])?;
let rows = stmt.query(&[])?;
println!(" {:-30} {:-8} {}", "Name", "Null?", "Type");
println!(" {:-30} {:-8} {}", "------------------------------", "--------", "----------------------------");
for info in rows.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]

Gets column name

Gets Oracle type

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

Trait Implementations

impl Debug for ColumnInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for ColumnInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for ColumnInfo
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for ColumnInfo

impl !Sync for ColumnInfo