Here are some variations on using the .Connect under different conditions. (you may want to copy and paste in notetab to see the lines properly)
NOTE:
The database qualifier parameters DSQ and DBQ are only needed when the database location is changed at runtime. DSQ is used with a native connection to an SQL type database or when a connection is made through an OLE DB provider. The DBQ parameter is used with an ODBC connection. If your DBMS does not use the database concept (i.e. Oracle), you cannot specify a DSQ or DBQ parameter. Only one of the DSQ or DBQ parameter should be used (they should not be used together).
> When using the DSQ or DBQ parameters for SQL type databases, it is very important to remove any reference to the database name and owner (i.e. "pubs.dbo.table1" should be modified to become "table1"

from the report. This can be changed in the Designer under the Database | Set Location menu in the Table text box. This will need to be done for all tables in the report.
> Before you can use this property for an ODBC/SQL database, you must install the ODBC/SQL driver for whatever SQL database you are planning to use, and put the Database/BIN location in your path.
......................................
.:Natively to an SQL type database:.
Connecting natively to a Microsoft SQL Server database. Switch to a physical database server named "Production" and a database named "pubs" with a user ID of "sa" and a password of "letmein":
CrystalReport1.Connect = "DSN=Production;UID=sa;PWD=letmein;DSQ=pubs"
......................................
.:OLE DB to a SQL type database through the ODBC Provider:.
Connecting to a SQL Server database through ODBC and OLE DB (ODBC provider). Switch to an ODBC data source name called "Prod" and a database named "pubs" with a user ID's of "sa" and a password of "letmein":
CrystalReport1.Connect = "DSN=Prod;UID=sa;PWD=letmein;DSQ=pubs"
.....................................
.:OLE DB to a SQL Server database through the SQL Server Provider:.
Switch to a SQL Server (physical) name of "Accounting" and a database named "pubs" with a user ID's of "sa" and a password of "letmein":
CrystalReport1.Connect = "DSN=Accounting;UID=sa;PWD=letmein;DSQ=pubs"
......................................
Hope this helps you out.
Cheers,
SurfingGecko
Home of Crystal Ease