| RelationalDataProviderValidateSchema Method  | 
 
            Determines if the schema is valid.  Schema name can only contain alpha numeric character, underscore and hyphen.
            
 
    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 ValidateSchema(
	string schema
)
Public Overridable Function ValidateSchema ( 
	schema As String
) As Boolean
public:
virtual bool ValidateSchema(
	String^ schema
)
abstract ValidateSchema : 
        schema : string -> bool 
override ValidateSchema : 
        schema : string -> bool Parameters
- schema
- Type: SystemString
 The schema name.
Return Value
Type: 
Boolean, if the schema name is valid; otherwise 
.
            
 See Also
See Also