RelationalDataProviderCreateTemporaryTable Method |
Creates a temporary table.
Namespace:
Dundas.BI.Data.DataProviders.Relational
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic virtual ITemporaryTable CreateTemporaryTable(
IDisposable connection,
IDataReader tableDataReader,
string tableName,
bool forceRecreate
)
Public Overridable Function CreateTemporaryTable (
connection As IDisposable,
tableDataReader As IDataReader,
tableName As String,
forceRecreate As Boolean
) As ITemporaryTable
public:
virtual ITemporaryTable^ CreateTemporaryTable(
IDisposable^ connection,
IDataReader^ tableDataReader,
String^ tableName,
bool forceRecreate
)
abstract CreateTemporaryTable :
connection : IDisposable *
tableDataReader : IDataReader *
tableName : string *
forceRecreate : bool -> ITemporaryTable
override CreateTemporaryTable :
connection : IDisposable *
tableDataReader : IDataReader *
tableName : string *
forceRecreate : bool -> ITemporaryTable Parameters
- connection
- Type: SystemIDisposable
Opened connection. - tableDataReader
- Type: System.DataIDataReader
Table data reader. - tableName
- Type: SystemString
Table name. If , name should be auto-generated. - forceRecreate
- Type: SystemBoolean
If and table exists, do nothing, otherwise - recreate the table.
Return Value
Type:
ITemporaryTableA handle for the temporary table.
Exceptions| Exception | Condition |
|---|
| NotSupportedException | Thrown when the data provider does not support creating temporary tables. |
See Also