Size Property (DbLoaderColumn)
In This Topic
Gets or sets the maximum size, in bytes, of the data within the column.
Syntax
'Declaration
Public Overridable Property Size As Integer
public virtual int Size {get; set;}
Property Value
The maximum size, in bytes, of the data within the column.
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