Visual Basic (Declaration) | |
---|---|
Public Function New( _ ByVal name As String, _ ByVal fullName As String, _ ByVal select As String, _ ByVal description As String, _ ByVal dbDbType As DbType, _ ByVal metaType As MetaDataElement.NODE_TYPE _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim name As String Dim fullName As String Dim select As String Dim description As String Dim dbDbType As DbType Dim metaType As MetaDataElement.NODE_TYPE Dim instance As New MetaDataElement(name, fullName, select, description, dbDbType, metaType) |
C# | |
---|---|
public MetaDataElement( string name, string fullName, string select, string description, DbType dbDbType, MetaDataElement.NODE_TYPE metaType ) |
Managed Extensions for C++ | |
---|---|
public: MetaDataElement( string* name, string* fullName, string* select, string* description, DbType dbDbType, MetaDataElement.NODE_TYPE metaType ) |
C++/CLI | |
---|---|
public: MetaDataElement( String^ name, String^ fullName, String^ select, String^ description, DbType dbDbType, MetaDataElement.NODE_TYPE metaType ) |
Parameters
- name
- The name of the node such as the table or column name. This is the name as used so if a column has an alias, this is the alias.
- fullName
- The full name of this node. So for a column it is actually schema.table.column. null if same as name.
- select
- The select that created this node. This can be null.
- description
- The description of the node from the datasource metadata. Null if there is no description.
- dbDbType
- The data type.
- metaType
- One of the NODE_TYPE enums.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP, Windows Vista, Windows Server 2003 family