I would like to use Java with uniVocity-parsers to parse the csv data which is produced by mysql select into outfile
.
Now I encounter one situation of processing non-printable characters ! The mysql table contains bit(1)
column and when using select into outfile
to save it's data into file, I found that the bit(1)
column data become non-printable character. When using uniVocity-parsers to get line data, I get null
value of the bit(1)
columns. I expect to get real data of the bit(1)
column. What should I do ?