RelationalDataProviderSetConnectionSchema Method |
Sets the schema on the connection.
Namespace:
Dundas.BI.Data.DataProviders.Relational
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public virtual void SetConnectionSchema(
IDisposable connection,
string schemaName
)
Public Overridable Sub SetConnectionSchema (
connection As IDisposable,
schemaName As String
)
public:
virtual void SetConnectionSchema(
IDisposable^ connection,
String^ schemaName
)
abstract SetConnectionSchema :
connection : IDisposable *
schemaName : string -> unit
override SetConnectionSchema :
connection : IDisposable *
schemaName : string -> unit
Parameters
- connection
- Type: SystemIDisposable
The connection to set the schema on. - schemaName
- Type: SystemString
The schema to use.
Exceptions Exception | Condition |
---|
NotSupportedException | Thrown when the data provider does not support setting a schema on the connection. |
See Also