
- Crystal connection how to#
- Crystal connection software#
- Crystal connection code#
- Crystal connection password#
Now you will see the SalesLogix Server Name where the SalesLogix Connection Manager is located for your system ( for me it is Test 82), and the connection name given to the database you want to connect to (CFX_Reporting Class). This action will open the Data Link Properties window. Select the database that you want to report against out of the list and then click on the “Edit” button. Usually you will just see one or two database connection listed here. Instead of logging in, click on the button located to the right of the “Log on to:” field.
Crystal connection password#
If you know or can obtain the password the rest is easily accessible by logging into the SalesLogix Client. What is required to make this connection is the SalesLogix Admin Password, the location of the SalesLogix Connection Manager, and the SalesLogix Connection name. There is also a SalesLogix OLE DB Provider and since this is the primary way of a making a connection to SalesLogix data, I thought I would take the time to talk you through making this connection for Crystal Reports.
Crystal connection how to#
That post will lead you through how to make the connection using the Microsoft OLE DB Provider for SQL Server using the sysdba login and password. In a post labeled “Report Database Connections”, I discuss one method of making a connection to a SQL database.
Crystal connection code#
In no event shall Progress, its employees, or anyone else involved in the creation, production, or delivery of the code be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample code, even if Progress has been advised of the possibility of such damages.The first step in creating a report in Business Object Crystal Reports is always the connection to the database. The entire risk arising out of the use or performance of the sample code is borne by the user. Progress makes no warranties, express or implied, and disclaims all implied warranties including, without limitation, the implied warranties of merchantability or of fitness for a particular purpose. The sample code is provided on an "AS IS" basis.
Crystal connection software#
Progress Software Corporation makes no explicit or implied claims to the validity of this information.Īny sample code provided on this site is not supported under any Progress support program or service. However, the information provided is for your information only. Progress Software Corporation makes all reasonable efforts to verify this information. The origins of the information on this site may be internal or external to Progress Software Corporation (“Progress”). Report is created in design using a "Connection String" instead of a "Data Source" THIS-OBJECT:crRptTable:ApplyLogOnInfo(tblLogonInfo).

THIS-OBJECT:tblLogonInfo:ConnectionInfo:IntegratedSecurity = false. THIS-OBJECT:tblLogonInfo:ConnectionInfo:AllowCustomConnection = false. THIS-OBJECT:tblLogonInfo:ConnectionInfo:DatabaseName = lc-dbname. THIS-OBJECT:tblLogonInfo:ConnectionInfo:Password = lc-Pass.

THIS-OBJECT:tblLogonInfo:ConnectionInfo:UserID = lc-user. THIS-OBJECT:tblLogonInfo:ConnectionInfo:ServerName = lv-dsn. THIS-OBJECT:tblLogonInfo = THIS-OBJECT:crRptTable:LogOnInfo. Then is assigned to the TableLogOnInfo object: Lc-dsn = "DRIVER=" + lc-odbc + " HOST=" + lc-Server + " PORT=" + lc-Port + " DB=" + lc-dbname + " UID=" + lc-user + " PWD=" + lc-Pass. Net Crystal Reports, connection string is assigned to a variable: Connection parameters used in Crystal Reports XI:ĬhConnProps:ADD("Connection String", "DRIVER=" + lc-odbc + " HOST=" + lc-Server + " PORT=" + lc-Port + " DB=" + lc-dbname + " UID=" + lc-user + " PWD=" + lc-Pass.). NET Crystal Reports Viewer control into a form?" Code used is based on article 000013225 "How to add the. Error is displayed before the document is displayedin the Crystal Reports viewer
