DataProviderJdbcParameterSeparator Property |
Gets the value of the character that is used to separate JDBC parameters.
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 char? JdbcParameterSeparator { get; }
Public Overridable ReadOnly Property JdbcParameterSeparator As Char?
Get
public:
virtual property Nullable<wchar_t> JdbcParameterSeparator {
Nullable<wchar_t> get ();
}
abstract JdbcParameterSeparator : Nullable<char> with get
override JdbcParameterSeparator : Nullable<char> with get
Property Value
Type:
NullableChar
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