Kaydet (Commit) a1c60009 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

per SQL standard, BIT is 0/1 but BOOLEAN is true/false

Change-Id: If088cd33c19bccddbf145a44d19bf37adf638f3b
üst 080e9c29
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment