|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Most likely, you ran the application once before you commented out the AddRequiredDataSourceItem for SQL that requested MyDatabase. So, your application still thinks it needs MyDatabase. Right after the SetConnections() method is called within the SetDataSources() method, you can add a call to ConnectionManager.ShowAvailableConnections(). This will popup the connection string builder and allow you to delete the configured connection. Then re-run it without call to ShowAvailableConnections() and you can re-configure the connection string properly with for the FoxPro connection.
|