The sample SQL server connection string user exit can be found in %PUBLIC%\Documents\Micro Focus\Enterprise Developer\samples\Mainframe\CICS\DotNet\SQLEXIT
This exit can be called by Enterprise Server for .NET to obtain the connection string to use for user SQL connections.
This sample exit program uses the MicroFocus.SEE.UserExit.IConnectionStringExit.GetConnectionString() method with no parameters to retrieve the connection string for the user SQL database. Use this exit when a single CICS region uses the exit program.
Data Source=(local);Initial Catalog=master;Integrated Security=SSPI
This exit uses the MicroFocus.SEE.UserExit.IConnectionStringExit2.GetConnectionString() method that takes parameters to retrieve the connection string for the user SQL database by specifying the database server instance and region names. This exit is typically used when multiple regions use the exit program.