Bug on install ODAC 5.55.1.23

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
zzin32
Posts: 11
Joined: Fri 21 Oct 2005 13:12

Bug on install ODAC 5.55.1.23

Post by zzin32 » Fri 21 Oct 2005 13:16

Delphi 6

[Fatal Error] dcldac60.dpk(43): File not found: 'VTReg.dcu'

This file (VTreg.dcu or VTreg.pas) not found.

??

Alex
Posts: 655
Joined: Mon 08 Nov 2004 08:39

Post by Alex » Fri 21 Oct 2005 13:52

I think that you are using ODAC Pro version - this file is missing in current Pro vesrion build. Please contact us and we will send it to you. Or you can create it manually and fill it with the following code:

Code: Select all

{$IFNDEF CLR}
unit VTReg;
{$ENDIF}
interface
procedure Register;
implementation
uses
  Classes, VirtualTable;
procedure Register;
begin
  RegisterComponents('Data Access', [TVirtualTable]);
end;
end.

Post Reply