ADOEnumerationType 枚举

定义

介绍作为枚举的主题的对象。

public enum class ADOEnumerationType
public enum ADOEnumerationType
type ADOEnumerationType = 
Public Enum ADOEnumerationType
继承
ADOEnumerationType

字段

EnumerateAllRows 1

当变量包含数据集时,此设置枚举数据集的所有表中的所有行。 当变量包含数据表时,此设置枚举表中的所有行。 当它包含记录集时,它枚举记录集中的所有行。

EnumerateRowsInFirstTable 2

当变量包含数据集时,此设置枚举数据集中第一个表中的所有行。 当变量包含数据表时,它枚举表中的所有行。 当它包含记录集时,它枚举记录集中的所有行。

EnumerateTables 0

当变量包含数据集时,此设置枚举数据集中的所有表。 当变量包含数据表时,它将在运行时引发错误。 当它包含记录集时,它枚举记录集中的所有行。

示例

下面的代码示例演示如何使用 Type 属性区分对象类型,允许编写不同的代码来处理不同的业务逻辑、在用户界面中切换复选框或运行任何其他特殊进程。

m_Enum = (ForEachADOEnumerator)FEEHost.InnerObject;  
    if( m_Enum != null )  
    {  
        switch( m_Enum.Type )  
        {  
            case ADOEnumerationType.EnumerateAllRows:  
                // Insert custom code here.  
                break;  

            case ADOEnumerationType.EnumerateRowsInFirstTable:  
                // Insert custom code here.  
                break;  

            case ADOEnumerationType.EnumerateTables:  
                // Insert custom code here.  
                break;  

            default:  
                // Insert custom code here.  
                break;  
        }  

注解

该属性使用此 Type 枚举。 成员说明中引用的变量对象是指包含数据对象的运行时变量。

适用于