Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
What you might try is this, Mike:
Don't use the wizard to create the connection string, but type it in manually. NOTE: Within the BOMapper, you don't have to specify the database within your connection string, so these connection strings would work fine:
Server=MyServer;Integrated Security=SSPI;
Server=MyServer;User Id=sa;Password=MyPassword;
You don't need the database, because the BOMapper only connects to the "master" database to gather the structure information on the server. So, if the dropdown list won't populate with the databases, try skipping the wizard and just entering your connection string manually. Then, when you configure a business object and point it to a specific table, the BOMapper should be able to use the connection string you entered to read the database structure without problem.
|