step, date, time

This commit is contained in:
Aleksandar Fabijanic
2007-11-10 23:21:28 +00:00
parent 95c5230389
commit fca08a18df
63 changed files with 2161 additions and 96 deletions

View File

@@ -196,7 +196,7 @@ bool SQLiteStatementImpl::hasNext()
}
void SQLiteStatementImpl::next()
Poco::UInt32 SQLiteStatementImpl::next()
{
if (SQLITE_ROW == _nextResponse)
{
@@ -222,6 +222,8 @@ void SQLiteStatementImpl::next()
int rc = _nextResponse;
Utility::throwException(rc, std::string("Iterator Error: trying to access the next value"));
}
return 1u;
}