dotConnect for Zoho Desk Documentation
Devart.Common Namespace / DbLoaderColumn Class / Name Property
Example

In This Topic
    Name Property (DbLoaderColumn)
    In This Topic
    Gets or sets the name of the DbLoaderColumn.
    Syntax
    'Declaration
     
    Public Property Name As String
    public string Name {get; set;}

    Property Value

    The name of the DbLoaderColumn. The default value is an empty string ("").
    Remarks
    Every DbLoaderColumn object corresponds to one of the table fields with the same name as its Name property.
    Example
    public void GetDataColumns(ZohoDeskConnection ZohoDeskConnection)
    {
      
      ZohoDeskConnection.Open();
      ZohoDeskLoader loader = new ZohoDeskLoader();
      loader.Connection = ZohoDeskConnection;
      loader.TableName = "load_table";
      ZohoDeskLoaderColumn myColumn;
      try
      {
        loader.CreateColumns();
        for (int i = 0; i < loader.Columns.Count; i++)
        {
          myColumn = loader.Columns[i];
          Console.WriteLine(myColumn.Name);
          Console.WriteLine(myColumn.ZohoDeskType.ToString());
          Console.WriteLine(myColumn.Size);
          Console.WriteLine(myColumn.Scale);
          Console.WriteLine(myColumn.Precision);
          Console.WriteLine();
        }
       }
      finally
      {
        ZohoDeskConnection.Close();
      }
    }
    public void GetDataColumns(ZohoDeskConnection ZohoDeskConnection)
    {
      
      ZohoDeskConnection.Open();
      ZohoDeskLoader loader = new ZohoDeskLoader();
      loader.Connection = ZohoDeskConnection;
      loader.TableName = "load_table";
      ZohoDeskLoaderColumn myColumn;
      try
      {
        loader.CreateColumns();
        for (int i = 0; i < loader.Columns.Count; i++)
        {
          myColumn = loader.Columns[i];
          Console.WriteLine(myColumn.Name);
          Console.WriteLine(myColumn.ZohoDeskType.ToString());
          Console.WriteLine(myColumn.Size);
          Console.WriteLine(myColumn.Scale);
          Console.WriteLine(myColumn.Precision);
          Console.WriteLine();
        }
       }
      finally
      {
        ZohoDeskConnection.Close();
      }
    }
    See Also