DataProviderJdbcRegex Property  | 
 
            Gets the 
Regex of the provider to help extract provider values from jdbc connection string.
            
 
    Namespace: 
   Dundas.BI.Data.DataProviders
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic virtual Regex JdbcRegex { get; }Public Overridable ReadOnly Property JdbcRegex As Regex
	Get
public:
virtual property Regex^ JdbcRegex {
	Regex^ get ();
}abstract JdbcRegex : Regex with get
override JdbcRegex : Regex with get
Property Value
Type: 
Regex
            The provider's JDBC parameter separator character, or 
 if the provider does not support JDBC.
            e.g. jdbc:sqlserver://host:port;param1=value1;param2=value2 (semi-colon)
            e.g. jdbc:postgresql://host:port/db?param1=value1¶m2=value2 (ampersand)
            
See Also