Loading src/ProtocolManager.cpp +14 −14 Original line number Diff line number Diff line Loading @@ -437,8 +437,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) if(m_it->get_indicator(i) == soci::i_null) { #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " null" << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " null" << endl; #endif continue; } Loading @@ -450,8 +450,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) std::string value = m_it->get<std::string>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtString* dtString = row->add_strings_list(); Loading @@ -465,8 +465,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) double value = m_it->get<double>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtDouble* dtDouble = row->add_double_list(); Loading @@ -480,8 +480,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) int value = m_it->get<int>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtInteger* dtInteger = row->add_integer_list(); Loading @@ -495,8 +495,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) long long value = m_it->get<long long>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtLongLong* dtLongLong = row->add_long_long_list(); Loading @@ -510,8 +510,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) unsigned long value = m_it->get<unsigned long>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtUnsignedLong* dtUnsignedLong = row->add_unsinged_long_list(); Loading @@ -526,8 +526,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) boost::posix_time::ptime ptValue = boost::posix_time::ptime_from_tm(tmValue); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << boost::posix_time::to_simple_string(ptValue) << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << boost::posix_time::to_simple_string(ptValue) << endl; #endif Response::Metadata::Row::DtDate* dtDate = row->add_date_list(); Loading Loading
src/ProtocolManager.cpp +14 −14 Original line number Diff line number Diff line Loading @@ -437,8 +437,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) if(m_it->get_indicator(i) == soci::i_null) { #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " null" << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " null" << endl; #endif continue; } Loading @@ -450,8 +450,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) std::string value = m_it->get<std::string>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtString* dtString = row->add_strings_list(); Loading @@ -465,8 +465,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) double value = m_it->get<double>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtDouble* dtDouble = row->add_double_list(); Loading @@ -480,8 +480,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) int value = m_it->get<int>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtInteger* dtInteger = row->add_integer_list(); Loading @@ -495,8 +495,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) long long value = m_it->get<long long>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtLongLong* dtLongLong = row->add_long_long_list(); Loading @@ -510,8 +510,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) unsigned long value = m_it->get<unsigned long>(i); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << value << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << value << endl; #endif Response::Metadata::Row::DtUnsignedLong* dtUnsignedLong = row->add_unsinged_long_list(); Loading @@ -526,8 +526,8 @@ void ProtocolManager::fillRow(Response::Metadata::Row* row) boost::posix_time::ptime ptValue = boost::posix_time::ptime_from_tm(tmValue); #ifdef VERBOSE_DEBUG INFO_STREAM << "ProtocolManager::fillRow() name " << name << " " << boost::posix_time::to_simple_string(ptValue) << endl; INFO_STREAM << "ProtocolManager::fillRow() " << name << " " << boost::posix_time::to_simple_string(ptValue) << endl; #endif Response::Metadata::Row::DtDate* dtDate = row->add_date_list(); Loading