Page 1 of 1

Bug on install ODAC 5.55.1.23

Posted: Fri 21 Oct 2005 13:16
by zzin32
Delphi 6

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

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

??

Posted: Fri 21 Oct 2005 13:52
by Alex
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.