Hi Terry,
Here is a working project with not DevExpress grids, just regular datagridviews.
Here are some quick things to look at:
1.- AppMain.SetDataSources:
When using more than one database, you must setup the connection for each database and use the ConnectionManager.ApplicationKey and BO.DataSourceKey to properly identify each connection and database.
2.- Business Object:
In your case, you must set the DataSourceKey for each BO.
3.- In the Form:
You must load the data for ContestantsPRCABO1. check the code in the form.Load.
Since the data structure of both tables are not 100% equal, then don't use the BO.CopyDataFrom(), instead loop each record, assign the values, and since your Schema for the Rodeo database have NOT NULL like Greg pointed out before, you MUST assign a default value, or you will get errors when inserting records.
Keep in mind that this process will not check for duplicate records, so whenever you run it, it will insert a bunch of records again.
There is a lot to learn from this process, to avoid future frustration, you must take some time to dig deeper into the SF help file and the forum posts, all techniques I showed here in your project are well explain in both resources.
Good luck!
Edhy Rijo