| 227 | } |
| 228 | |
| 229 | bool CDBWrapper::IsEmpty() |
| 230 | { |
| 231 | std::unique_ptr<CDBIterator> it(NewIterator()); |
| 232 | it->SeekToFirst(); |
| 233 | return !(it->Valid()); |
| 234 | } |
| 235 | |
| 236 | CDBIterator::~CDBIterator() { delete piter; } |
| 237 | bool CDBIterator::Valid() const { return piter->Valid(); } |