SparkseeNet
6.0.2
|
Public Member Functions | |
void | Close () throws System.IO.IOException |
Closes the reader. | |
int | GetRow () throws System.IO.IOException |
The row number for the current row. | |
bool | Reset () throws System.IO.IOException |
Moves the reader to the beginning. | |
bool | Read (com.sparsity.sparksee.gdb.StringList row) throws System.IO.IOException |
Reads the next row as a string array. | |
RowReader interface.
Common interface for those readers which get the data as an string array.
It works as follows: perform as many read operations as necessary and call close once at the end. Once close is called no more read operations can be executed.
Check out the 'Data import' section in the SPARKSEE User Manual for more details on this.
void com.sparsity.sparksee.io.RowReader.Close | ( | ) | throws System.IO.IOException |
Closes the reader.
System.IO.IOException | If the close fails. |
int com.sparsity.sparksee.io.RowReader.GetRow | ( | ) | throws System.IO.IOException |
The row number for the current row.
System.IO.IOException | If it fails. |
bool com.sparsity.sparksee.io.RowReader.Read | ( | com.sparsity.sparksee.gdb.StringList | row | ) | throws System.IO.IOException |
Reads the next row as a string array.
row | [out] A string list with each comma-separated element as a separate entry. |
System.IO.IOException | If bad things happen during the read. |
bool com.sparsity.sparksee.io.RowReader.Reset | ( | ) | throws System.IO.IOException |
Moves the reader to the beginning.
Restarts the reader.
System.IO.IOException | If bad things happen during the restart. |