[odbc] Format boolean values correctly as SQL_C_CHAR (#327)

When a boolean column value is requested as a SQL_C_CHAR value,
correctly return a "1" or "0" string value
This commit is contained in:
Nyall Dawson 2021-08-20 11:21:46 +10:00 committed by GitHub
parent 45dcdbc5a6
commit 05d1b373d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1465,9 +1465,19 @@ SQLRETURN SQL_API SQLGetData(
if (col->col_type == MDB_BOOL) {
// bool cannot be null
*(BOOL*)rgbValue = col->cur_value_len ? 0 : 1;
if (pcbValue)
*pcbValue = 1;
if (fCType == SQL_C_CHAR) {
if ( col->cur_value_len )
((char *)rgbValue)[0] = '0';
else
((char *)rgbValue)[0] = '1';
((char *)rgbValue)[1] = '\0';
if (pcbValue)
*pcbValue = sizeof(SQLCHAR);
} else {
*(BOOL*)rgbValue = col->cur_value_len ? 0 : 1;
if (pcbValue)
*pcbValue = 1;
}
return SQL_SUCCESS;
}
if (col->cur_value_len == 0) {