Hi Melvin,
Sure. You can change your connection string to wherever your DB is. In the case of the database name, you should use Catalog name overwrite. So in your case it should look like:
<configSections>
<section name="sqlServerCatalogNameOverwrites" type="System.Configuration.NameValueSectionHandler" />
</configSections>
...
<sqlServerCatalogNameOverwrites>
<add key="databaseDEV" value="DatabasePro " />
</sqlServerCatalogNameOverwrites>
This makes sure that at runtime any reference in the persistence info of the elements in the generated code to the catalog 'databaseDEV' is renamed to 'DatabasePro '.
You can also specify an empty string as new name. In that case, the DQE will not specify a catalog name in the generated SQL elements, which will make the SQL target the catalog specified in the connection string. For example:
<appSettings>
<add key="Main.ConnectionString" value="data source=myServer;initial catalog= databaseDEV;..."/>
</appSettings>
...
<sqlServerCatalogNameOverwrites>
<add key="databaseDEV" value="" />
</sqlServerCatalogNameOverwrites>
That all. You don't need to have two different LLBLGen projects