fetch Text Column
fun fetchTextColumn(columnName: String, maxRows: Int = 0, removeMissing: Boolean = false): Array<String?>
Obviously, there are memory issues if there are a lot of rows.
Return
the array of values
Parameters
column Name
the column name to retrieve, must be a text column
max Rows
the total number of rows to extract starting at row 1
remove Missing
if true, then missing (null values) are removed
fun fetchTextColumn(columnNum: Int, maxRows: Int = 0, removeMissing: Boolean = false): Array<String?>
Obviously, there are memory issues if there are a lot of rows.
Return
the array of values
Parameters
column Num
the column number to retrieve, must be between [0,getNumberColumns())
max Rows
the total number of rows to extract starting at row 1
remove Missing
if true, then missing (null values) are removed