RawRow

Allows column access on a raw DB row as returned by db.rawSQL.

Postblit

this(this)
this(this)
Undocumented in source.

Members

Functions

get
T get(const(char)[] column)

Gets the value of the column at the given column name assuming it is of the given type. If the value is not of the given type, an exception will be thrown.

opt
auto opt(const(char)[] column)

Same as get, wraps primitives inside Nullable!T. Strings and ubyte[] binary arrays will return null (checkable with is null), but otherwise simply be embedded.

Meta