RelationalDataProviderCreateTable Method  | 
 
            Creates a database table.
            
 
    Namespace: 
   Dundas.BI.Data.DataProviders.Relational
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic virtual string CreateTable(
	IDisposable connection,
	IDataReader tableDataReader,
	string tableName,
	bool forceRecreate
)
Public Overridable Function CreateTable ( 
	connection As IDisposable,
	tableDataReader As IDataReader,
	tableName As String,
	forceRecreate As Boolean
) As String
public:
virtual String^ CreateTable(
	IDisposable^ connection, 
	IDataReader^ tableDataReader, 
	String^ tableName, 
	bool forceRecreate
)
abstract CreateTable : 
        connection : IDisposable * 
        tableDataReader : IDataReader * 
        tableName : string * 
        forceRecreate : bool -> string 
override CreateTable : 
        connection : IDisposable * 
        tableDataReader : IDataReader * 
        tableName : string * 
        forceRecreate : bool -> string Parameters
- connection
 - Type: SystemIDisposable
Opened connection. - tableDataReader
 - Type: System.DataIDataReader
Table data reader. - tableName
 - Type: SystemString
Table name. - forceRecreate
 - Type: SystemBoolean
If  and table exists, throw exception, otherwise - drop and recreate the table. 
Return Value
Type: 
StringTable name. This name maybe different than 
tableName.
Exceptions
Remarks
            Table name returned is a "full" name and maybe different than tableName.
            
See Also