Page 4 of 4

Customizing the Data provider

Posted: Fri Feb 03, 2012 7:32 am
by Vladimir
Hello,

Unfortunately, the modification of the web designer in this direction is not planned. You can modify the localization file, it stores the name of the data sources (in the Database section).

To turn off all services you can use the following code:

Code: Select all

foreach (StiService service in StiConfig.Services)
{
      if (service is StiDataAdapterService) service.ServiceEnabled = false;
}
This feature will be available in the next prerelease build.

Thank you.