| 31 | namespace detail { |
| 32 | |
| 33 | std::string columnText(const unsigned char* column) { |
| 34 | if (column == nullptr) { |
| 35 | return {}; |
| 36 | } |
| 37 | return {reinterpret_cast<const char*>(column)}; |
| 38 | } |
| 39 | |
| 40 | SqlFile_Impl::SqlFile_Impl(const openstudio::path& path, const bool createIndexes) |
| 41 | : m_path(path), |
no outgoing calls
no test coverage detected