//! This module contains buffers intended to be bound to ODBC statement handles.
mod column_with_indicator;
mod columnar;
mod description;
mod text_column;
mod text_row_set;
pub use self::{
columnar::{AnyColumnView, ColumnarRowSet},
description::{BufferDescription, BufferKind},
text_column::{TextColumn, TextColumnIt},
text_row_set::TextRowSet,
};