Database Concept Assertion After Database Query

Several RDBMS catalog functions enable you to query the database. Concepts returned by a database query are not automatically asserted. They must be explicitly asserted.

To assert the database concept, use the following function:

Database.assertDBInstance(concept, deep)

This function returns void.

When a database concept is asserted with the deep parameter set to true, all the referenced and contained concepts are also asserted (concept properties are asserted recursively).

For example:

void assertDBInstance(Concept MyDBConcept, boolean deep)

Where, MyDBConcept is the instance of the concept to be asserted to working memory.