Page 1 of 1

EntityDAC with UniDAC/SQLite

Posted: Wed 26 Oct 2016 04:05
by mulhams
Hello,

I'm using EntityDAC with UniDAC(SQLite Provider), how can I benefit from the various features of UniDAC like direct connection and encryption? It seems to me that the corresponding keywords/parameters of direct connection and encryption are not recognized in connectionstring property of TEntityConnection!

Re: EntityDAC with UniDAC/SQLite

Posted: Thu 27 Oct 2016 07:52
by AlexP
hello,

To use specific provider options you should also indicate the name of the provider in the connectionstring, for example:

Data Provider=UniDAC;SQL Dialect=SQLite;Login Prompt=False;ProviderName=SQLite;database=:memory:;Direct=true

All supported options you can find in help https://www.devart.com/unidac/docs/?sql ... rticle.htm

Re: EntityDAC with UniDAC/SQLite

Posted: Sun 06 Nov 2016 09:49
by mulhams
Thanks :)