RelationalDataProviderCreateTable Method |
Creates a database table.
Namespace: Dundas.BI.Data.DataProviders.RelationalAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.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 IDisposable
- Opened connection.
- tableDataReader IDataReader
- Table data reader.
- tableName String
- Table name.
- forceRecreate Boolean
- If and table exists, throw exception, otherwise - drop and recreate the table.
Return Value
StringTable name. This name maybe different than
tableName.
Exceptions
Remarks
Table name returned is a "full" name and maybe different than tableName.
See Also