It gives developers control over the decoding strategy employed by the driver when returning row data.
The default is auto (the current behavior) while adding string mode so all data is returned as a string and the user can take care of parsing the data in their application.
FIxes #450
It gives developers control over the decoding strategy employed by the driver when returning row data. The default is
auto
(the current behavior) while addingstring
mode so all data is returned as a string and the user can take care of parsing the data in their application.