Cannot Connect to Oracle DB

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
redline
Posts: 3
Joined: Thu 12 Feb 2009 10:17

Cannot Connect to Oracle DB

Post by redline » Wed 07 Jun 2017 10:04

When we try to connect to Oracle DB we get the error:
‘Oracle provider is not registered. You should add the OracleUniProvider unit to the use clause of any unit in your project or place the TOracleUniProvider component on the form’

The component is on the form and we also have placed the file OraProvider210.bpl in as the same folder as the exe of the application.

We are using Universal Data Access Components Professional 6.0.2 with RAD Studio XE7 to connect to Oracle 12c.

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: Cannot Connect to Oracle DB

Post by MaximG » Wed 07 Jun 2017 14:11

We tested UniDAC work according to the description and found no problems. Make sure that in the USES clause of the form containing the TUniConnection component there is the description of the corresponding modules :

Code: Select all

...
uses ... UniProvider, OracleUniProvider;
...

Post Reply