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(SQLiteConnection sqConnection)
{
sqConnection.Open();
SQLiteLoader loader = new SQLiteLoader();
loader.Connection = sqConnection;
loader.TableName = "load_table";
SQLiteLoaderColumn myColumn;
try
{
loader.CreateColumns();
for (int i = 0; i < loader.Columns.Count; i++)
{
myColumn = loader.Columns[i];
Console.WriteLine(myColumn.Name);
Console.WriteLine(myColumn.SQLiteType.ToString());
Console.WriteLine(myColumn.Size);
Console.WriteLine(myColumn.Scale);
Console.WriteLine(myColumn.Precision);
Console.WriteLine();
}
}
finally
{
sqConnection.Close();
}
}
public void GetDataColumns(SQLiteConnection sqConnection)
{
sqConnection.Open();
SQLiteLoader loader = new SQLiteLoader();
loader.Connection = sqConnection;
loader.TableName = "load_table";
SQLiteLoaderColumn myColumn;
try
{
loader.CreateColumns();
for (int i = 0; i < loader.Columns.Count; i++)
{
myColumn = loader.Columns[i];
Console.WriteLine(myColumn.Name);
Console.WriteLine(myColumn.SQLiteType.ToString());
Console.WriteLine(myColumn.Size);
Console.WriteLine(myColumn.Scale);
Console.WriteLine(myColumn.Precision);
Console.WriteLine();
}
}
finally
{
sqConnection.Close();
}
}
See Also