mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 21:50:47 +01:00
DateTime support & some test tidying
This commit is contained in:
@@ -294,6 +294,31 @@ public:
|
||||
throw Poco::BadCastException();
|
||||
}
|
||||
|
||||
void convert(Poco::Timestamp& val) const
|
||||
{
|
||||
throw Poco::BadCastException();
|
||||
}
|
||||
|
||||
void convert(Poco::DateTime& val) const
|
||||
{
|
||||
throw Poco::BadCastException();
|
||||
}
|
||||
|
||||
void convert(Poco::LocalDateTime& val) const
|
||||
{
|
||||
throw Poco::BadCastException();
|
||||
}
|
||||
|
||||
bool isArray() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual bool isStruct() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void convert(std::string& val) const
|
||||
{
|
||||
val.assign(_val.begin(), _val.end());
|
||||
|
||||
Reference in New Issue
Block a user