skip to main content
OpenAccess SDK SQL Engine core methods for .NET : Methods for .NET reference : dam_getNextSchemaObject
 

dam_getNextSchemaObject

This method is used to navigate through the items in the schema object list returned by the dam_getSchemaObjectList call. This method returns the .NET schema object. It should be type cast to the type of objects contained in the list (schemaobj_table, schemaobj_column, schemaobj_stat, or schemaobj_fkey).
object dam_getNextSchemaObject(
int64 obj_list)
 
Table 165: Parameters for dam_getNextSchemaObject 
Parameter
Type
Description
IN
 
 
obj_list
int64
The handle to the list of schema objects
RETURN
 
 
 
object
The .NET schema object in the list. A NULL is returned at the end of the list.
For example, to retrieve an object from a list of DAMOBJ_TYPE_TABLE objects:
schemaobj_table pTable =
(schemaobj_table)ndam.dam_getNextSchemaObject(obj_list)

See also 

dam_getSchemaObjectList