Class
ArrowCSVReadOptions
Properties
Arrow.CSVReadOptions:allow-newlines-in-values
Whether values are allowed to contain CR (0x0d) and LF (0x0a) characters.
since: 0.12.0
Arrow.CSVReadOptions:allow-null-strings
Whether string / binary columns can have null values.
If TRUE
, then strings in “null_values” are considered null for string columns.
If FALSE
, then all strings are valid string values.
since: 0.14.0
Arrow.CSVReadOptions:block-size
Block size we request from the IO layer; also determines the size
of chunks when GArrowCSVReadOptions:use-threads
is TRUE
.
since: 0.12.0
Arrow.CSVReadOptions:escape-character
Escaping character. This is used only when
GArrowCSVReadOptions:is-escaped
is TRUE
.
since: 0.12.0
Arrow.CSVReadOptions:ignore-empty-lines
Whether empty lines are ignored. If FALSE
, an empty line
represents a simple empty value (assuming a one-column CSV file).
since: 0.12.0
Arrow.CSVReadOptions:is-double-quoted
Whether a quote inside a value is double quoted.
since: 0.12.0
Arrow.CSVReadOptions:n-skip-rows
The number of header rows to skip (not including the row of column names, if any)
since: 0.15.0
Arrow.CSVReadOptions:quote-character
Quoting character. This is used only when
GArrowCSVReadOptions:is-quoted
is TRUE
.
since: 0.12.0
Signals
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.