FFIColumnSelector

Allows specifying SQL table_name.column_name as select_alias syntax in a DB-agnostic way.

Constructors

this
this(FFIString columnName)
Undocumented in source.
this
this(FFIString tableName, FFIString columnName)
Undocumented in source.
this
this(FFIString tableName, FFIString columnName, FFIString selectAlias)
Undocumented in source.

Members

Variables

columnName
FFIString columnName;

The column name to select.

selectAlias
FFIOption!FFIString selectAlias;

Optionally rename to a different output name than column_name.

tableName
FFIOption!FFIString tableName;

Optionally define which table or join alias this column comes from.

Meta