DateTime support & some test tidying

This commit is contained in:
Aleksandar Fabijanic
2007-08-20 11:55:18 +00:00
parent 2dbfb583c9
commit 3b66a355c2
23 changed files with 266 additions and 164 deletions

View File

@@ -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());