Knight Data Access Layer
GetAddColumnSql Method (BaseDatabaseProvider)




KellermanSoftware.NetDataAccessLayer Namespace > BaseDatabaseProvider Class : GetAddColumnSql Method
The table to add the column to
A column in the table
Get the SQL for adding a column to an existing table
Syntax
Public Overridable Function GetAddColumnSql( _
   ByVal table As Table, _
   ByVal column As Field _
) As String
Dim instance As BaseDatabaseProvider
Dim table As Table
Dim column As Field
Dim value As String
 
value = instance.GetAddColumnSql(table, column)
public virtual string GetAddColumnSql( 
   Table table,
   Field column
)
public: virtual string* GetAddColumnSql( 
   Table* table,
   Field* column
) 
public:
virtual String^ GetAddColumnSql( 
   Table^ table,
   Field^ column
) 

Parameters

table
The table to add the column to
column
A column in the table
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

Reference

BaseDatabaseProvider Class
BaseDatabaseProvider Members