dotConnect for Salesforce Marketing Cloud Documentation
Devart.Common Namespace / DbLoaderColumn Class / Precision Property
Example

Precision Property (DbLoaderColumn)
Gets or sets the maximum number of digits used to represent the column value.
Syntax
'Declaration
 
Public Overridable Property Precision As Integer
 

Property Value

The maximum number of digits used to represent the column value. The default value is 0.
Remarks
Use Precision property to set the precision of number columns.
Example
public void GetDataColumns(ExactTargetConnection exactTargetConnection)
{
  
  exactTargetConnection.Open();
  ExactTargetLoader loader = new ExactTargetLoader();
  loader.Connection = exactTargetConnection;
  loader.TableName = "load_table";
  ExactTargetLoaderColumn myColumn;
  try
  {
    loader.CreateColumns();
    for (int i = 0; i < loader.Columns.Count; i++)
    {
      myColumn = loader.Columns[i];
      Console.WriteLine(myColumn.Name);
      Console.WriteLine(myColumn.ExactTargetType.ToString());
      Console.WriteLine(myColumn.Size);
      Console.WriteLine(myColumn.Scale);
      Console.WriteLine(myColumn.Precision);
      Console.WriteLine();
    }
   }
  finally
  {
    exactTargetConnection.Close();
  }
}
Public Sub GetDataColumns(ByVal exactTargetConnection As ExactTargetConnection)
  exactTargetConnection.Open()
  Dim loader As ExactTargetLoader
  loader = New ExactTargetLoader
  loader.Connection = exactTargetConnection
  loader.TableName = "load_table"
  Dim myColumn As ExactTargetLoaderColumn
  Try
    loader.CreateColumns()
    Dim i As Integer
    For i = 0 To loader.Columns.Count - 1
      myColumn = loader.Columns(i)
      Console.WriteLine(myColumn.Name)
      Console.WriteLine(myColumn.ExactTargetType.ToString())
      Console.WriteLine(myColumn.Size)
      Console.WriteLine(myColumn.Scale)
      Console.WriteLine(myColumn.Precision)
      Console.WriteLine()
    Next i
  Finally
    exactTargetConnection.Close()
  End Try
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also