DynamicAny improvements (now holds any type out-of-the-box), some refactoring and documentation improvements

This commit is contained in:
Aleksandar Fabijanic
2008-06-30 00:26:54 +00:00
parent e0bb9c162b
commit b1f895eed8
14 changed files with 331 additions and 776 deletions

View File

@@ -874,6 +874,13 @@ void DataTest::testRow()
fail ("must fail");
}catch (NotFoundException&) {}
try
{
row4.addSortField(1);
fail ("must fail - field 1 is empty");
}
catch (InvalidAccessException&) { }
row4.set("field0", 0);
row4.set("field1", 1);
row4.set("field2", 2);