- added GH #445: Add flag to force POCO to preserve manually #defined target Windows versions

- fixed SQLite and MySQL broken builds
This commit is contained in:
Alex Fabijanic
2014-05-21 04:47:24 -05:00
parent b7884c6d8c
commit 9d47f3ced8
8 changed files with 154 additions and 127 deletions

View File

@@ -287,21 +287,27 @@ void AbstractPreparator::prepare(std::size_t pos, const std::list<std::string>&
}
void AbstractPreparator::prepare(std::size_t pos, const UTF16String& val)
{
throw NotImplementedException("UTF16String preparator must be implemented.");
}
void AbstractPreparator::prepare(std::size_t pos, const std::vector<UTF16String>& val)
{
throw NotImplementedException("std::vector preparator must be implemented.");
throw NotImplementedException("std::vector<UTF16String> preparator must be implemented.");
}
void AbstractPreparator::prepare(std::size_t pos, const std::deque<UTF16String>& val)
{
throw NotImplementedException("std::deque preparator must be implemented.");
throw NotImplementedException("std::deque<UTF16String> preparator must be implemented.");
}
void AbstractPreparator::prepare(std::size_t pos, const std::list<UTF16String>& val)
{
throw NotImplementedException("std::list preparator must be implemented.");
throw NotImplementedException("std::list<UTF16String> preparator must be implemented.");
}