Page 1 of 1

Specifying options for provider at run time

Posted: Wed 01 Jun 2011 21:28
by sandy771
I am using Embarcadero C++ and programmatically creating a a TUniConnection, how do a I specify a provider (sqlite) option such as UseUnicode = true

Posted: Thu 02 Jun 2011 08:31
by sandy771
I have found it
UniConnection1->SpecificOptions->Add()

Posted: Thu 02 Jun 2011 08:46
by AlexP
Hello,

Also you can set options in the following way:

Code: Select all

UniConnection1->SpecificOptions->Values["Option_Name"] = "Value";