Page 1 of 1

Getting all supported connection string parameters for a provider

Posted: Sat 26 Jan 2019 02:44
by cbc700
Hello. The dotConnect Universal documentation in Provider-Specific Notes mentions the "most important connection string parameters". Is there a way to enumerate the full parameter list in code? Thanks.

Re: Getting all supported connection string parameters for a provider

Posted: Wed 30 Jan 2019 12:44
by Pinturiccio
It's not possible to get the list of available connection string parameters. dotConnect Universal loads a provider specified in the Provider parameter in the connection string, and then uses its connection string. You should read the corresponding provider documentation to view the list of available connection string parameters.
For internal supported dotConnect providers, you can find information about connection string parameters here:
https://www.devart.com/dotconnect/oracl ... tring.html
https://www.devart.com/dotconnect/mysql ... tring.html
https://www.devart.com/dotconnect/postg ... tring.html
https://www.devart.com/dotconnect/sqlit ... tring.html

For other providers, like SqlClient or ODP.NET, you can find the information in their documentation.

Re: Getting all supported connection string parameters for a provider

Posted: Mon 04 Feb 2019 09:17
by cbc700
Thanks.