Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Failed to load database information. crdb_jdbc.dll could not be loaded

Status
Not open for further replies.

ADRuegg

Programmer
Joined
Oct 15, 2007
Messages
1
Location
US
I'm very new to Crystal Reportsm MS Visual Studio and much of the PC world (old unix programmer).
I'm trying to run an existing Crystal Report, with parameters, using Visual Studio. The database is JDBC. I made a new project J# using the Crystal Reports Application template.
package CrystalReportsApplication6;

import System.Collections.Generic.*;
import System.Windows.Forms.*;

public class Program
{
public static void main(String[] args)
{
Application.EnableVisualStyles();
Application.Run(new Form1());
}
}

I get the error from the Crystal Report Windows Forms Viewer:
Failed to load database information.
Details: The database DLL 'crdb_jdbc.dll' could not be loaded.
---
I've registered this DLL, but I still get the error. Am I missing something?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top