| RelationalDataProviderValidateSchemaAgainstServer Method  | 
 
            Validates the schema name against the actual source.
            
 
    Namespace: 
   Dundas.BI.Data.DataProviders.Relational
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
 Syntax
Syntaxpublic virtual bool ValidateSchemaAgainstServer(
	string schema,
	IDisposable connection
)
Public Overridable Function ValidateSchemaAgainstServer ( 
	schema As String,
	connection As IDisposable
) As Boolean
public:
virtual bool ValidateSchemaAgainstServer(
	String^ schema, 
	IDisposable^ connection
)
abstract ValidateSchemaAgainstServer : 
        schema : string * 
        connection : IDisposable -> bool 
override ValidateSchemaAgainstServer : 
        schema : string * 
        connection : IDisposable -> bool Parameters
- schema
- Type: SystemString
 The schema name.
- connection
- Type: SystemIDisposable
 The connection to execute the schema check on.
Return Value
Type: 
Boolean, if the schema name is valid; otherwise 
.
            
 See Also
See Also