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)
Syntax
public virtual ITemporaryTable CreateTemporaryTable(
	IDisposable connection,
	IDataReader tableDataReader,
	string tableName,
	bool forceRecreate
)

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: ITemporaryTable
A handle for the temporary table.
Exceptions
ExceptionCondition
NotSupportedExceptionThrown when the data provider does not support creating temporary tables.
See Also