[]
        
(Showing Draft Content)

Connect to a .NET Custom Data Provider

In addition to data sources built natively to Wyn, you can also make custom data sources available under the Custom connectors section, like the one you see in the image below. Based on what data providers your organization has integrated into Wyn, different sources with different icons will be available to you.

NewCustomDataSource

1. The Firebird Custom data source is a .NET custom data source. Click the icon to create a data source.

CONNEC~1

2. The dialog box will have a link to a guide provided by your organization on how to connect to the data source, including what connection string to use.

3. Provide a Connection String and test the connection.

TestConnection

4. You can now create datasets that use the custom data source. In the screenshot below, there is a cached data set connected using the Firebird data source. Use the following SQL statement to create a table:

SELECT * FROM Employee;

and press preview

FirebirdNativeQueryDataset