diff options
-rw-r--r-- | connectivity/source/commontools/FValue.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx index 46fe62fdc3d5..0a4a88002f83 100644 --- a/connectivity/source/commontools/FValue.cxx +++ b/connectivity/source/commontools/FValue.cxx @@ -1021,6 +1021,8 @@ OUString ORowSetValue::getString( ) const } break; case DataType::BIT: + aRet = OUString::number(static_cast<bool>(*this)); + break; case DataType::BOOLEAN: aRet = OUString::boolean(static_cast<bool>(*this)); break; |