dotConnect for Zoho Books 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(ZohoBooksConnection ZohoBooksConnection)
{
  
  ZohoBooksConnection.Open();
  ZohoBooksLoader loader = new ZohoBooksLoader();
  loader.Connection = ZohoBooksConnection;
  loader.TableName = "load_table";
  ZohoBooksLoaderColumn myColumn;
  try
  {
    loader.CreateColumns();
    for (int i = 0; i < loader.Columns.Count; i++)
    {
      myColumn = loader.Columns[i];
      Console.WriteLine(myColumn.Name);
      Console.WriteLine(myColumn.ZohoBooksType.ToString());
      Console.WriteLine(myColumn.Size);
      Console.WriteLine(myColumn.Scale);
      Console.WriteLine(myColumn.Precision);
      Console.WriteLine();
    }
   }
  finally
  {
    ZohoBooksConnection.Close();
  }
}
Public Sub GetDataColumns(ByVal ZohoBooksConnection As ZohoBooksConnection)
  ZohoBooksConnection.Open()
  Dim loader As ZohoBooksLoader
  loader = New ZohoBooksLoader
  loader.Connection = ZohoBooksConnection
  loader.TableName = "load_table"
  Dim myColumn As ZohoBooksLoaderColumn
  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.ZohoBooksType.ToString())
      Console.WriteLine(myColumn.Size)
      Console.WriteLine(myColumn.Scale)
      Console.WriteLine(myColumn.Precision)
      Console.WriteLine()
    Next i
  Finally
    ZohoBooksConnection.Close()
  End Try
End Sub
See Also