Odbc Toolkit - rowfilter


: rowfilt = rowfilter(C)
: rowfilt = rowfilter(T)

Create an unconstrained rowfilter object with columns names.

Inputs

C

A column name, cell array of column names.

T

A table to use for column names.

Outputs

rowfilt

a rowfilter object

Object Properties

Object properties are the names of the columns on creation of the filter.

Constraints can be set on a specific field of the filter by setting a comparison value for the variable name.

Examples

 
 # create a rowfilter with 2 columns
 rf = rowfilter({'Column1', 'Column2'});
 # add a constraint for Column1 > 10
 rfc = rf.Column1 > 10