Devart Oracle Data Access Components Source Code
Instructions of installing

There are two ways to compile and install ODAC manually: using IDE and using make-files. Below are detailed instructions which describe installing ODAC using both ways.


Using IDE Using make-files
Embarcadero RAD Studio XE6 Embarcadero RAD Studio XE6
Embarcadero RAD Studio XE5 Embarcadero RAD Studio XE5
Embarcadero RAD Studio XE4 Embarcadero RAD Studio XE4
Embarcadero RAD Studio XE3 Embarcadero RAD Studio XE3
Embarcadero RAD Studio XE2 Embarcadero RAD Studio XE2
Embarcadero RAD Studio XE Embarcadero RAD Studio XE
Embarcadero RAD Studio 2010 Embarcadero RAD Studio 2010
CodeGear RAD Studio 2009 CodeGear RAD Studio 2009
CodeGear RAD Studio 2007 CodeGear RAD Studio 2007
Borland Developer Studio 2006 Borland Developer Studio 2006
Borland Delphi 2005 Borland Delphi 2005
Borland Delphi 7 Borland Delphi 7
Borland Delphi 6 Borland Delphi 6
Borland Delphi 5 Borland Delphi 5
Borland C++Builder 6 Borland C++Builder 6
Borland C++Builder 5 Borland C++Builder 5
Lazarus Lazarus

Installing ODAC for Embarcadero RAD Studio XE6 using IDE

If you are using C++Builder XE6, you should use the Using make-files way to install ODAC. Otherwise, run Delphi XE6 and perform the following steps:

  1. Build and compile the dac200.dpk DAC run-time package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  2. Build and compile the dacvcl200.dpk DAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  3. Build and compile the dacfmx200.dpk DAC GUI FireMonkey related package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  4. Build and compile the dcldac200.dpk DAC design-time package.
  5. Build and compile the odac200.dpk ODAC run-time package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  6. Build and compile the odacvcl200.dpk ODAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  7. Build and compile the odacfmx200.dpk ODAC GUI FireMonkey related package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  8. Build, compile, and install the dclodac200.dpk ODAC design-time package.
  9. Build, compile, and install the dclodacfmx200.dpk ODAC FireMonkey design-time package.
NOTE: To compile ODAC based Delphi XE6 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS, iOS simulator, iOS device, Android).
Home


Installing ODAC for Embarcadero RAD Studio XE6 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi20 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\Studio\14.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files for 32-bit Windows will be copied to the ODAC\Bin\Delphi20\Win32 directory.
    *.bpl files for 64-bit Windows will be copied to the ODAC\Bin\Delphi20\Win64 directory.
    *.dylib files for 32-bit Mac OS will be copied to the ODAC\Bin\Delphi20\OSX32 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files for 32-bit Windows will be copied to the ODAC\Lib\Delphi20\Win32 directory.
    *.dcu, *.dcp, and *.res files for 64-bit Windows will be copied to the ODAC\Lib\Delphi20\Win64 directory.
    *.dcu, *.dcp, *.bpi, *.a, and *.res files for 32-bit Mac OS will be copied to the ODAC\Lib\Delphi20\OSX32 directory.
    *.dcu, *.dcp, *.a, and *.res files for the iOS simulator will be copied to the ODAC\Lib\Delphi20\iOSSimulator directory.
    *.dcu, *.dcp, *.a, *.o, and *.res files for the iOS device will be copied to the ODAC\Lib\Delphi20\iOSDevice directory.
    *.dcu, *.dcp, *.a, *.o, and *.res files for Android will be copied to the ODAC\Lib\Delphi20\Android directory.
    *.hpp files for 32-bit Windows will be copied to the ODAC\Include\Delphi20\Win32 directory.
    *.hpp files for 64-bit Windows will be copied to the ODAC\Include\Delphi20\Win64 directory.
    *.hpp files for 32-bit Mac OS will be copied to the ODAC\Include\Delphi20\OSX32 directory.
    *.hpp files for iOS simulator will be copied to the ODAC\Include\Delphi20\iOSSimulator directory.
    *.hpp files for iOS device will be copied to the ODAC\Include\Delphi20\iOSDevice directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi20\Win32\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi20\Win32\*.bpl files to the SysWOW64 directory and ODAC\Bin\Delphi20\Win64\*.bpl files to the System32 directory.
  5. Run Embarcadero RAD Studio XE6.
  6. Install the dclodac200.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE6 main menu and add the System32\dclodac200.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac200.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Install the dclodacfmx200.bpl ODAC FireMonkey design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE6 main menu and add the System32\dclodacfmx200.bpl (if you are using 32-bit Windows) or SysWOW64\dclodacfmx200.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi XE6 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS, iOS simulator, iOS device, Android). If you want to use precompiled Source Code, add the ODAC\Lib\Delphi20\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Lib\Delphi20\Win64 directory to "Library Path" for the 64-bit Windows platform, the ODAC\Lib\Delphi20\OSX32 directory to "Library Path" for the Mac OS platform, the ODAC\Lib\Delphi20\iOSSimulator directory to "Library Path" for the iOS sumulator, the ODAC\Lib\Delphi20\iOSDevice directory to "Library Path" for the iOS device, and the ODAC\Lib\Delphi20\Android directory to "Library Path" for Android.
To compile ODAC based C++Builder XE6 applications, add the ODAC\Include\Delphi20\Win32 directory to "Include Path" and the ODAC\Lib\Delphi20\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Include\Delphi20\Win64 directory to "Include Path" and the ODAC\Lib\Delphi20\Win64 directory to "Library Path" for the 64-bit Windows platform, the ODAC\Include\Delphi20\OSX32 directory to "Include Path" and the ODAC\Lib\Delphi20\OSX32 directory to "Library Path" for the Mac OS platform, the ODAC\Include\Delphi20\iOSSimulator directory to "Include Path" and the ODAC\Lib\Delphi20\iOSSimulator directory to "Library Path" for the iOS simulator, and the ODAC\Include\Delphi20\iOSDevice directory to "Include Path" and the ODAC\Lib\Delphi20\iOSDevice directory to "Library Path" for the iOS Device.
Home


Installing ODAC for Embarcadero RAD Studio XE5 using IDE

If you are using C++Builder XE5, you should use the Using make-files way to install ODAC. Otherwise, run Delphi XE5 and perform the following steps:

  1. Build and compile the dac190.dpk DAC run-time package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  2. Build and compile the dacvcl190.dpk DAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  3. Build and compile the dacfmx190.dpk DAC GUI FireMonkey related package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  4. Build and compile the dcldac190.dpk DAC design-time package.
  5. Build and compile the odac190.dpk ODAC run-time package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  6. Build and compile the odacvcl190.dpk ODAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  7. Build and compile the odacfmx190.dpk ODAC GUI FireMonkey related package. To make ODAC work under Windows x64, Mac OS, iOS simulator, iOS device and Android, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  8. Build, compile, and install the dclodac190.dpk ODAC design-time package.
  9. Build, compile, and install the dclodacfmx190.dpk ODAC FireMonkey design-time package.
NOTE: To compile ODAC based Delphi XE5 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS, iOS simulator, iOS device, Android).
Home


Installing ODAC for Embarcadero RAD Studio XE5 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi19 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\RAD Studio\12.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files for 32-bit Windows will be copied to the ODAC\Bin\Delphi19\Win32 directory.
    *.bpl files for 64-bit Windows will be copied to the ODAC\Bin\Delphi19\Win64 directory.
    *.dylib files for 32-bit Mac OS will be copied to the ODAC\Bin\Delphi19\OSX32 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files for 32-bit Windows will be copied to the ODAC\Lib\Delphi19\Win32 directory.
    *.dcu, *.dcp, and *.res files for 64-bit Windows will be copied to the ODAC\Lib\Delphi19\Win64 directory.
    *.dcu, *.dcp, *.bpi, *.a, and *.res files for 32-bit Mac OS will be copied to the ODAC\Lib\Delphi19\OSX32 directory.
    *.dcu, *.dcp, *.a, and *.res files for the iOS simulator will be copied to the ODAC\Lib\Delphi19\iOSSimulator directory.
    *.dcu, *.dcp, *.a, *.o, and *.res files for the iOS device will be copied to the ODAC\Lib\Delphi19\iOSDevice directory.
    *.dcu, *.dcp, *.a, *.o, and *.res files for Android will be copied to the ODAC\Lib\Delphi19\Android directory.
    *.hpp files for 32-bit Windows will be copied to the ODAC\Include\Delphi19\Win32 directory.
    *.hpp files for 64-bit Windows will be copied to the ODAC\Include\Delphi19\Win64 directory.
    *.hpp files for 32-bit Mac OS will be copied to the ODAC\Include\Delphi19\OSX32 directory.
    *.hpp files for iOS simulator will be copied to the ODAC\Include\Delphi19\iOSSimulator directory.
    *.hpp files for iOS device will be copied to the ODAC\Include\Delphi19\iOSDevice directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi19\Win32\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi19\Win32\*.bpl files to the SysWOW64 directory and ODAC\Bin\Delphi19\Win64\*.bpl files to the System32 directory.
  5. Run Embarcadero RAD Studio XE5.
  6. Install the dclodac190.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE5 main menu and add the System32\dclodac190.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac190.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Install the dclodacfmx190.bpl ODAC FireMonkey design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE5 main menu and add the System32\dclodacfmx190.bpl (if you are using 32-bit Windows) or SysWOW64\dclodacfmx190.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi XE5 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS, iOS simulator, iOS device, Android). If you want to use precompiled Source Code, add the ODAC\Lib\Delphi19\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Lib\Delphi19\Win64 directory to "Library Path" for the 64-bit Windows platform, the ODAC\Lib\Delphi19\OSX32 directory to "Library Path" for the Mac OS platform, the ODAC\Lib\Delphi19\iOSSimulator directory to "Library Path" for the iOS sumulator, the ODAC\Lib\Delphi19\iOSDevice directory to "Library Path" for the iOS device, and the ODAC\Lib\Delphi19\Android directory to "Library Path" for Android.
To compile ODAC based C++Builder XE5 applications, add the ODAC\Include\Delphi19\Win32 directory to "Include Path" and the ODAC\Lib\Delphi19\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Include\Delphi19\Win64 directory to "Include Path" and the ODAC\Lib\Delphi19\Win64 directory to "Library Path" for the 64-bit Windows platform, the ODAC\Include\Delphi19\OSX32 directory to "Include Path" and the ODAC\Lib\Delphi19\OSX32 directory to "Library Path" for the Mac OS platform, the ODAC\Include\Delphi19\iOSSimulator directory to "Include Path" and the ODAC\Lib\Delphi19\iOSSimulator directory to "Library Path" for the iOS simulator, and the ODAC\Include\Delphi19\iOSDevice directory to "Include Path" and the ODAC\Lib\Delphi19\iOSDevice directory to "Library Path" for the iOS Device.
Home


Installing ODAC for Embarcadero RAD Studio XE4 using IDE

If you are using C++Builder XE4, you should use the Using make-files way to install ODAC. Otherwise, run Delphi XE4 and perform the following steps:

  1. Build and compile the dac180.dpk DAC run-time package. To make ODAC work under Windows x64, Mac OS, iOS simulator and iOS device, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  2. Build and compile the dacvcl180.dpk DAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  3. Build and compile the dacfmx180.dpk DAC GUI FireMonkey related package. To make ODAC work under Windows x64, Mac OS, iOS simulator and iOS device, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  4. Build and compile the dcldac180.dpk DAC design-time package.
  5. Build and compile the odac180.dpk ODAC run-time package. To make ODAC work under Windows x64, Mac OS, iOS simulator and iOS device, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  6. Build and compile the odacvcl180.dpk ODAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  7. Build and compile the odacfmx180.dpk ODAC GUI FireMonkey related package. To make ODAC work under Windows x64, Mac OS, iOS simulator and iOS device, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  8. Build, compile, and install the dclodac180.dpk ODAC design-time package.
  9. Build, compile, and install the dclodacfmx180.dpk ODAC FireMonkey design-time package.
NOTE: To compile ODAC based Delphi XE4 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS, iOS simulator, iOS device).
Home


Installing ODAC for Embarcadero RAD Studio XE4 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi18 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\RAD Studio\11.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files for 32-bit Windows will be copied to the ODAC\Bin\Delphi18\Win32 directory.
    *.bpl files for 64-bit Windows will be copied to the ODAC\Bin\Delphi18\Win64 directory.
    *.dylib files for 32-bit Mac OS will be copied to the ODAC\Bin\Delphi18\OSX32 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files for 32-bit Windows will be copied to the ODAC\Lib\Delphi18\Win32 directory.
    *.dcu, *.dcp, and *.res files for 64-bit Windows will be copied to the ODAC\Lib\Delphi18\Win64 directory.
    *.dcu, *.dcp, *.bpi, *.a, and *.res files for 32-bit Mac OS will be copied to the ODAC\Lib\Delphi18\OSX32 directory.
    *.dcu, *.dcp, *.a, and *.res files for the iOS simulator will be copied to the ODAC\Lib\Delphi18\iOSSimulator directory.
    *.dcu, *.dcp, *.a, *.o, and *.res files for the iOS device will be copied to the ODAC\Lib\Delphi18\iOSDevice directory.
    *.hpp files for 32-bit Windows will be copied to the ODAC\Include\Delphi18\Win32 directory.
    *.hpp files for 64-bit Windows will be copied to the ODAC\Include\Delphi18\Win64 directory.
    *.hpp files for 32-bit Mac OS will be copied to the ODAC\Include\Delphi18\OSX32 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi18\Win32\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi18\Win32\*.bpl files to the SysWOW64 directory and ODAC\Bin\Delphi18\Win64\*.bpl files to the System32 directory.
  5. Run Embarcadero RAD Studio XE4.
  6. Install the dclodac180.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE4 main menu and add the System32\dclodac180.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac180.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Install the dclodacfmx180.bpl ODAC FireMonkey design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE4 main menu and add the System32\dclodacfmx180.bpl (if you are using 32-bit Windows) or SysWOW64\dclodacfmx180.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi XE4 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS, iOS simulator, iOS device). If you want to use precompiled Source Code, add the ODAC\Lib\Delphi18\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Lib\Delphi18\Win64 directory to "Library Path" for the 64-bit Windows platform, the ODAC\Lib\Delphi18\OSX32 directory to "Library Path" for the Mac OS platform, the ODAC\Lib\Delphi18\iOSSimulator directory to "Library Path" for the iOS sumulator, and the ODAC\Lib\Delphi18\iOSDevice directory to "Library Path" for the iOS device.
To compile ODAC based C++Builder XE4 applications, add the ODAC\Include\Delphi18\Win32 directory to "Include Path" and the ODAC\Lib\Delphi18\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Include\Delphi18\Win64 directory to "Include Path" and the ODAC\Lib\Delphi18\Win64 directory to "Library Path" for the 64-bit Windows platform, and the ODAC\Include\Delphi18\OSX32 directory to "Include Path" and the ODAC\Lib\Delphi18\OSX32 directory to "Library Path" for the Mac OS platform.
Home


Installing ODAC for Embarcadero RAD Studio XE3 using IDE

If you are using C++Builder XE3, you should use the Using make-files way to install ODAC. Otherwise, run Delphi XE3 and perform the following steps:

  1. Build and compile the dac170.dpk DAC run-time package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  2. Build and compile the dacvcl170.dpk DAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  3. Build and compile the dacfmx170.dpk DAC GUI FireMonkey related package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  4. Build and compile the dcldac170.dpk DAC design-time package.
  5. Build and compile the odac170.dpk ODAC run-time package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  6. Build and compile the odacvcl170.dpk ODAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  7. Build and compile the odacfmx170.dpk ODAC GUI FireMonkey related package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  8. Build, compile, and install the dclodac170.dpk ODAC design-time package.
  9. Build, compile, and install the dclodacfmx170.dpk ODAC FireMonkey design-time package.
NOTE: To compile ODAC based Delphi XE3 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS).
Home


Installing ODAC for Embarcadero RAD Studio XE3 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi17 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\RAD Studio\10.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files for 32-bit Windows will be copied to the ODAC\Bin\Delphi17\Win32 directory.
    *.bpl files for 64-bit Windows will be copied to the ODAC\Bin\Delphi17\Win64 directory.
    *.dylib files for 32-bit Mac OS will be copied to the ODAC\Bin\Delphi17\OSX32 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files for 32-bit Windows will be copied to the ODAC\Lib\Delphi17\Win32 directory.
    *.dcu, *.dcp, and *.res files for 64-bit Windows will be copied to the ODAC\Lib\Delphi17\Win64 directory.
    *.dcu, *.dcp, *.bpi, *.a, and *.res files for 32-bit Mac OS will be copied to the ODAC\Lib\Delphi17\OSX32 directory.
    *.hpp files for 32-bit Windows will be copied to the ODAC\Include\Delphi17\Win32 directory.
    *.hpp files for 32-bit Mac OS will be copied to the ODAC\Include\Delphi17\OSX32 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi17\Win32\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi17\Win32\*.bpl files to the SysWOW64 directory and ODAC\Bin\Delphi17\Win64\*.bpl files to the System32 directory.
  5. Run Embarcadero RAD Studio XE3.
  6. Install the dclodac170.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE3 main menu and add the System32\dclodac170.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac170.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Install the dclodacfmx170.bpl ODAC FireMonkey design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE3 main menu and add the System32\dclodacfmx170.bpl (if you are using 32-bit Windows) or SysWOW64\dclodacfmx170.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi XE3 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS). If you want to use precompiled Source Code, add the ODAC\Lib\Delphi17\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Lib\Delphi17\Win64 directory to "Library Path" for the 64-bit Windows platform, and the ODAC\Lib\Delphi17\OSX32 directory to "Library Path" for the Mac OS platform.
To compile ODAC based C++Builder XE3 applications, add the ODAC\Include\Delphi17\Win32 directory to "Include Path" and the ODAC\Lib\Delphi17\Win32 directory to "Library Path" for the 32-bit Windows platform, and the ODAC\Include\Delphi17\OSX32 directory to "Include Path" and the ODAC\Lib\Delphi17\OSX32 directory to "Library Path" for the Mac OS platform.
Home


Installing ODAC for Embarcadero RAD Studio XE2 using IDE

If you are using C++Builder XE2, you should use the Using make-files way to install ODAC. Otherwise, run Delphi XE2 and perform the following steps:

  1. Build and compile the dac160.dpk DAC run-time package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  2. Build and compile the dacvcl160.dpk DAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  3. Build and compile the dacfmx160.dpk DAC GUI FireMonkey related package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  4. Build and compile the dcldac160.dpk DAC design-time package.
  5. Build and compile the odac160.dpk ODAC run-time package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  6. Build and compile the odacvcl160.dpk ODAC GUI VCL related package. To make ODAC work under Windows x64, this step must be repeated for this platform (can be selected in "Target Platforms" of the package).
  7. Build and compile the odacfmx160.dpk ODAC GUI FireMonkey related package. To make ODAC work under Windows x64 and Mac OS, this step must be repeated for each of these platforms (can be selected in "Target Platforms" of the package).
  8. Build, compile, and install the dclodac160.dpk ODAC design-time package.
  9. Build, compile, and install the dclodacfmx160.dpk ODAC FireMonkey design-time package.
NOTE: To compile ODAC based Delphi XE2 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS).
Home


Installing ODAC for Embarcadero RAD Studio XE2 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi16 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\RAD Studio\9.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files for 32-bit Windows will be copied to the ODAC\Bin\Delphi16\Win32 directory.
    *.bpl files for 64-bit Windows will be copied to the ODAC\Bin\Delphi16\Win64 directory.
    *.dylib files for 32-bit Mac OS will be copied to the ODAC\Bin\Delphi16\OSX32 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files for 32-bit Windows will be copied to the ODAC\Lib\Delphi16\Win32 directory.
    *.dcu, *.dcp, and *.res files for 64-bit Windows will be copied to the ODAC\Lib\Delphi16\Win64 directory.
    *.dcu, *.dcp, *.bpi, *.a, and *.res files for 32-bit Mac OS will be copied to the ODAC\Lib\Delphi16\OSX32 directory.
    *.hpp files for 32-bit Windows will be copied to the ODAC\Include\Delphi16\Win32 directory.
    *.hpp files for 32-bit Mac OS will be copied to the ODAC\Include\Delphi16\OSX32 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi16\Win32\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi16\Win32\*.bpl files to the SysWOW64 directory and ODAC\Bin\Delphi16\Win64\*.bpl files to the System32 directory.
  5. Run Embarcadero RAD Studio XE2.
  6. Install the dclodac160.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE2 main menu and add the System32\dclodac160.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac160.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Install the dclodacfmx160.bpl ODAC FireMonkey design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE2 main menu and add the System32\dclodacfmx160.bpl (if you are using 32-bit Windows) or SysWOW64\dclodacfmx160.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi XE2 applications, add the ODAC\Source directory to "Library Path" for all platforms you want to work with (32-bit Windows, 64-bit Windows, Mac OS). If you want to use precompiled Source Code, add the ODAC\Lib\Delphi16\Win32 directory to "Library Path" for the 32-bit Windows platform, the ODAC\Lib\Delphi16\Win64 directory to "Library Path" for the 64-bit Windows platform, and the ODAC\Lib\Delphi16\OSX32 directory to "Library Path" for the Mac OS platform.
To compile ODAC based C++Builder XE2 applications, add the ODAC\Include\Delphi16\Win32 directory to "Include Path" and the ODAC\Lib\Delphi16\Win32 directory to "Library Path" for the 32-bit Windows platform, and the ODAC\Include\Delphi16\OSX32 directory to "Include Path" and the ODAC\Lib\Delphi16\OSX32 directory to "Library Path" for the Mac OS platform.
Home


Installing ODAC for Embarcadero RAD Studio XE using IDE

If you are using C++Builder XE, you should use the Using make-files way to install ODAC. Otherwise, run Delphi XE and perform the following steps:

  1. Build and compile the dac150.dpk DAC run-time package.
  2. Build and compile the dacvcl150.dpk DAC GUI related package.
  3. Build and compile the dcldac150.dpk DAC design-time package.
  4. Build and compile the odac150.dpk ODAC run-time package.
  5. Build and compile the odacvcl150.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac150.dpk ODAC design-time package.
NOTE: To compile ODAC based Delphi XE applications, add the ODAC\Source directory to "Library Path".
Home


Installing ODAC for Embarcadero RAD Studio XE using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi15 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\RAD Studio\8.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\Delphi15 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\Delphi15 directory.
    *.hpp files will be copied to the ODAC\Include\Delphi15 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi15\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi15\*.bpl files to the SysWOW64 directory.
  5. Run Embarcadero RAD Studio XE.
  6. Install the dclodac150.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio XE main menu and add the System32\dclodac150.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac150.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi XE applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi15 directory to "Library Path".
To compile ODAC based C++Builder XE applications, add the ODAC\Include\Delphi15 directory to "Include Path" and the ODAC\Lib\Delphi15 directory to "Library Path".
Home


Installing ODAC for Embarcadero RAD Studio 2010 using IDE

If you are using C++Builder 2010, you should use the Using make-files way to install ODAC. Otherwise, run Delphi 2010 and perform the following steps:

  1. Build and compile the dac140.dpk DAC run-time package.
  2. Build and compile the dacvcl140.dpk DAC GUI related package.
  3. Build and compile the dcldac140.dpk DAC design-time package.
  4. Build and compile the odac140.dpk ODAC run-time package.
  5. Build and compile the odacvcl140.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac140.dpk ODAC design-time package.
NOTE: To compile ODAC based Delphi 2010 applications, add the ODAC\Source directory to "Library Path".
Home


Installing ODAC for Embarcadero RAD Studio 2010 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi14 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Embarcadero\RAD Studio\7.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\Delphi14 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\Delphi14 directory.
    *.hpp files will be copied to the ODAC\Include\Delphi14 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi14\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi14\*.bpl files to the SysWOW64 directory.
  5. Run Embarcadero RAD Studio 2010.
  6. Install the dclodac140.bpl ODAC design-time package. For this, open the "Component->Install Packages" Embarcadero RAD Studio 2010 main menu and add the System32\dclodac140.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac140.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi 2010 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi14 directory to "Library Path".
To compile ODAC based C++Builder 2010 applications, add the ODAC\Include\Delphi14 directory to "Include Path" and the ODAC\Lib\Delphi14 directory to "Library Path".
Home


Installing ODAC for CodeGear RAD Studio 2009 using IDE

If you are using C++Builder 2009, you should use the Using make-files way to install ODAC. Otherwise, run Delphi 2009 and perform the following steps:

  1. Build and compile the dac120.dpk DAC run-time package.
  2. Build and compile the dacvcl120.dpk DAC GUI related package.
  3. Build and compile the dcldac120.dpk DAC design-time package.
  4. Build and compile the odac120.dpk ODAC run-time package.
  5. Build and compile the odacvcl120.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac120.dpk ODAC design-time package.
NOTE: To compile ODAC based Delphi 2009 applications, add the ODAC\Source directory to "Library Path".
Home


Installing ODAC for CodeGear RAD Studio 2009 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi12 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\CodeGear\RAD Studio\6.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\Delphi12 directory.
    *.dcu, *.dcp, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\Delphi12 directory.
    *.hpp files will be copied to the ODAC\Include\Delphi12 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi12\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi12\*.bpl files to the SysWOW64 directory.
  5. Run CodeGear RAD Studio 2009.
  6. Install the dclodac120.bpl ODAC design-time package. For this, open the "Component->Install Packages" CodeGear RAD Studio 2009 main menu and add the System32\dclodac120.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac120.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi 2009 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi12 directory to "Library Path".
To compile ODAC based C++Builder 2009 applications, add the ODAC\Include\Delphi12 directory to "Include Path" and the ODAC\Lib\Delphi12 directory to "Library Path".
Home


Installing ODAC for CodeGear RAD Studio 2007 using IDE

If you are using C++Builder 2007, you should use the Using make-files way to install ODAC. If you are using Delphi 2007, perform the following steps:

  1. Build and compile the dac105.dpk DAC run-time package.
  2. Build and compile the dacvcl105.dpk DAC GUI related package.
  3. Build and compile the dcldac105.dpk DAC design-time package.
  4. Build and compile the odac105.dpk ODAC run-time package.
  5. Build and compile the odacvcl105.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac105.dpk ODAC design-time package.
If you are using Delphi .NET, perform the following steps:
  1. Build and make the Devart.Dac.dpk DAC run-time package.
  2. Build and make the Devart.Dac.AdoNet.dpk DAC run-time package.
  3. Build and make the Devart.Dac.Design.dpk DAC design-time package.
  4. Build and make the Devart.Odac.dpk ODAC run-time package.
  5. Build and make the Devart.Odac.AdoNet.dpk ODAC run-time package.
  6. Build and make the Devart.Odac.Design.dpk ODAC design-time package.
  7. Open the "Component->Installed .NET Components" Delphi .NET main menu, go to the "Assembly Search Paths" tab, and add the ODAC\Source\Delphi11 directory to the list.
  8. Open the "Component->Installed .NET Components" Delphi .NET main menu, go to the ".NET VCL Components" tab, and add the ODAC\Source\Delphi11\Devart.Odac.Design.dll assembly using the Add button.
NOTE: To compile ODAC based Delphi 2007 applications, add the ODAC\Source directory to "Library Path".
To compile ODAC based Delphi .NET applications, add Devart.Dac and Devart.Odac to "Namespace Prefixes", and add the ODAC\Source and ODAC\Source\Net directories to "Library Path".
Home


Installing ODAC for CodeGear RAD Studio 2007 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi11 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\CodeGear\RAD Studio\5.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl and *.dll files will be copied to the ODAC\Bin\Delphi11 directory.
    *.dcu, *.dcuil, *.dcp, *.dcpil, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\Delphi11 directory.
    *.hpp files will be copied to the ODAC\Include\Delphi11 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi11\*.bpl and ODAC\Bin\Delphi11\*.dll files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi11\*.bpl and ODAC\Bin\Delphi11\*.dll files to the SysWOW64 directory.
  5. Run CodeGear RAD Studio 2007.
  6. Install the dclodac105.bpl ODAC design-time package. For this, open the "Component->Install Packages" CodeGear RAD Studio 2007 main menu and add the System32\dclodac105.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac105.bpl (if you are using 64-bit Windows) package using the Add button.
  7. To use ODAC in Delphi .NET, close CodeGear RAD Studio 2007 and open Delphi .NET .
  8. To use ODAC in Delphi .NET, open the "Component->Installed .NET Components" Delphi .NET main menu, go to the ".NET VCL Components" tab, and add the System32\Devart.Odac.Design.dll (if you are using 32-bit Windows) or SysWOW64\Devart.Odac.Design.dll (if you are using 64-bit Windows) assembly using the Add button.
NOTE: To compile ODAC based Delphi 2007 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi11 directory to "Library Path".
To compile ODAC based Delphi .NET applications, add Devart.Dac and Devart.Odac to "Namespace Prefixes", and add the ODAC\Source and ODAC\Source\Net directories to "Library Path".
To compile ODAC based C++Builder 2007 applications, add the ODAC\Include\Delphi11 directory to "Include Path" and the ODAC\Lib\Delphi11 directory to "Library Path".
Home


Installing ODAC for Borland Developer Studio 2006 using IDE

If you are using C++Builder 2006, you should use the Using make-files way to install ODAC. If you are using Delphi 2006, perform the following steps:

  1. Build and compile the dac100.dpk DAC run-time package.
  2. Build and compile the dacvcl100.dpk DAC GUI related package.
  3. Build and compile the dcldac100.dpk DAC design-time package.
  4. Build and compile the odac100.dpk ODAC run-time package.
  5. Build and compile the odacvcl100.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac100.dpk ODAC design-time package.
If you are using Delphi .NET, perform the following steps:
  1. Build and make the Devart.Dac.dpk DAC run-time package.
  2. Build and make the Devart.Dac.AdoNet.dpk DAC run-time package.
  3. Build and make the Devart.Dac.Design.dpk DAC design-time package.
  4. Build and make the Devart.Odac.dpk ODAC run-time package.
  5. Build and make the Devart.Odac.AdoNet.dpk ODAC run-time package.
  6. Build and make the Devart.Odac.Design.dpk ODAC design-time package.
  7. Open the "Component->Installed .NET Components" Delphi .NET main menu, go to the "Assembly Search Paths" tab, and add the ODAC\Source\Delphi10 directory to the list.
  8. Open the "Component->Installed .NET Components" Delphi .NET main menu, go to the ".NET VCL Components" tab, and add the ODAC\Source\Delphi10\Devart.Odac.Design.dll assembly using the Add button.
NOTE: To compile ODAC based Delphi 2006 applications, add the ODAC\Source directory to "Library Path".
To compile ODAC based Delphi .NET applications, add Devart.Dac and Devart.Odac to "Namespace Prefixes", and add the ODAC\Source and ODAC\Source\Net directories to "Library Path".
Home


Installing ODAC for Borland Developer Studio 2006 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi10 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\BDS\4.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl and *.dll files will be copied to the ODAC\Bin\Delphi10 directory.
    *.dcu, *.dcuil, *.dcp, *.dcpil, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\Delphi10 directory.
    *.hpp files will be copied to the ODAC\Include\Delphi10 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi10\*.bpl and ODAC\Bin\Delphi10\*.dll files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi10\*.bpl and ODAC\Bin\Delphi10\*.dll files to the SysWOW64 directory.
  5. Run Borland Developer Studio 2006.
  6. Install the dclodac100.bpl ODAC design-time package. For this, open the "Component->Install Packages" Borland Developer Studio 2006 main menu and add the System32\dclodac100.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac100.bpl (if you are using 64-bit Windows) package using the Add button.
  7. To use ODAC in Delphi .NET, close Borland Developer Studio 2006 and open Delphi .NET .
  8. To use ODAC in Delphi .NET, open the "Component->Installed .NET Components" Delphi .NET main menu, go to the ".NET VCL Components" tab, and add the System32\Devart.Odac.Design.dll (if you are using 32-bit Windows) or SysWOW64\Devart.Odac.Design.dll (if you are using 64-bit Windows) assembly using the Add button.
NOTE: To compile ODAC based Delphi 2006 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi10 directory to "Library Path".
To compile ODAC based Delphi .NET applications, add Devart.Dac and Devart.Odac to "Namespace Prefixes", and add the ODAC\Source and ODAC\Source\Net directories to "Library Path".
To compile ODAC based C++Builder 2006 applications, add the ODAC\Include\Delphi10 directory to "Include Path" and the ODAC\Lib\Delphi10 directory to "Library Path".
Home


Installing ODAC for Borland Delphi 2005 using IDE

If you are using Delphi 2005, perform the following steps:

  1. Build and compile the dac90.dpk DAC run-time package.
  2. Build and compile the dacvcl90.dpk DAC GUI related package.
  3. Build and compile the dcldac90.dpk DAC design-time package.
  4. Build and compile the odac90.dpk ODAC run-time package.
  5. Build and compile the odacvcl90.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac90.dpk ODAC design-time package.
If you are using Delphi .NET, perform the following steps:
  1. Build and make the Devart.Dac.dpk DAC run-time package.
  2. Build and make the Devart.Dac.AdoNet.dpk DAC run-time package.
  3. Build and make the Devart.Dac.Design.dpk DAC design-time package.
  4. Build and make the Devart.Odac.dpk ODAC run-time package.
  5. Build and make the Devart.Odac.AdoNet.dpk ODAC run-time package.
  6. Build and make the Devart.Odac.Design.dpk ODAC design-time package.
  7. Open the "Component->Installed .NET Components" Delphi .NET main menu, go to the "Assembly Search Paths" tab, and add the ODAC\Source\Delphi9 directory to the list.
  8. Open the "Component->Installed .NET Components" Delphi .NET main menu, go to the ".NET VCL Components" tab, and add the ODAC\Source\Delphi9\Devart.Odac.Design.dll assembly using the Add button.
NOTE: To compile ODAC based Delphi 2005 applications, add the ODAC\Source directory to "Library Path".
To compile ODAC based Delphi .NET applications, add Devart.Dac and Devart.Odac to "Namespace Prefixes", and add the ODAC\Source and ODAC\Source\Net directories to "Library Path".
Home


Installing ODAC for Borland Delphi 2005 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi9 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\BDS\3.0
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl and *.dll files will be copied to the ODAC\Bin\Delphi9 directory.
    *.dcu, *.dcuil, *.dcp, *.dcpil, and *.res files will be copied to the ODAC\Lib\Delphi9 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi9\*.bpl and ODAC\Bin\Delphi9\*.dll files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi9\*.bpl and ODAC\Bin\Delphi9\*.dll files to the SysWOW64 directory.
  5. Run Borland Delphi 2005.
  6. Install the dclodac90.bpl ODAC design-time package. For this, open the "Component->Install Packages" Borland Delphi 2005 main menu and add the System32\dclodac90.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac90.bpl (if you are using 64-bit Windows) package using the Add button.
  7. To use ODAC in Delphi .NET, open the "Component->Installed .NET Components" Delphi .NET main menu, go to the ".NET VCL Components" tab, and add the System32\Devart.Odac.Design.dll (if you are using 32-bit Windows) or SysWOW64\Devart.Odac.Design.dll (if you are using 64-bit Windows) assembly using the Add button.
NOTE: To compile ODAC based Delphi 2005 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi9 directory to "Library Path".
To compile ODAC based Delphi .NET applications, add Devart.Dac and Devart.Odac to "Namespace Prefixes", and add the ODAC\Source and ODAC\Source\Net directories to "Library Path".
Home


Installing ODAC for Delphi 7 using IDE

Perform the following steps:

  1. Build and compile the dac70.dpk DAC run-time package.
  2. Build and compile the dacvcl70.dpk DAC GUI related package.
  3. Build and compile the dcldac70.dpk DAC design-time package.
  4. Build and compile the odac70.dpk ODAC run-time package.
  5. Build and compile the odacvcl70.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac70.dpk ODAC design-time package.
NOTE: To compile ODAC based Delphi 7 applications, add the ODAC\Source directory to "Library Path".
Home


Installing ODAC for Delphi 7 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi7 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\Delphi7
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\Delphi7 directory.
    *.dcu, *.dcp, and *.res files will be copied to the ODAC\Lib\Delphi7 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi7\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi7\*.bpl files to the SysWOW64 directory.
  5. Run Delphi 7.
  6. Install the dclodac70.bpl ODAC design-time package. For this, open the "Component->Install Packages" Delphi 7 main menu and add the System32\dclodac70.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac70.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi 7 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi7 directory to "Library Path".
Home


Installing ODAC for Delphi 6 using IDE

Perform the following steps:

  1. Build and compile the dac60.dpk DAC run-time package.
  2. Build and compile the dacvcl60.dpk DAC GUI related package.
  3. Build and compile the dcldac60.dpk DAC design-time package.
  4. Build and compile the odac60.dpk ODAC run-time package.
  5. Build and compile the odacvcl60.dpk ODAC GUI related package.
  6. Build, compile, and install the dclodac60.dpk ODAC design-time package.
NOTE: To compile ODAC based Delphi 6 applications, add the ODAC\Source directory to "Library Path".
Home


Installing ODAC for Delphi 6 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi6 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\Delphi6
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\Delphi6 directory.
    *.dcu, *.dcp, and *.res files will be copied to the ODAC\Lib\Delphi6 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi6\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi6\*.bpl files to the SysWOW64 directory.
  5. Run Delphi 6.
  6. Install the dclodac60.bpl ODAC design-time package. For this, open the "Component->Install Packages" Delphi 6 main menu and add the System32\dclodac60.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac60.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi 6 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi6 directory to "Library Path".
Home


Installing ODAC for Delphi 5 using IDE

Perform the following steps:

  1. Build and compile the dac50.dpk DAC run-time package.
  2. Build and compile the dcldac50.dpk DAC design-time package.
  3. Build and compile the odac50.dpk ODAC run-time package.
  4. Build, compile, and install the dclodac50.dpk ODAC design-time package.
NOTE: To compile ODAC based Delphi 5 applications, add the ODAC\Source directory to "Library Path".
Home


Installing ODAC for Delphi 5 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\Delphi5 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\Delphi5
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\Delphi5 directory.
    *.dcu, *.dcp, and *.res files will be copied to the ODAC\Lib\Delphi5 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\Delphi5\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\Delphi5\*.bpl files to the SysWOW64 directory.
  5. Run Delphi 5.
  6. Install the dclodac50.bpl ODAC design-time package. For this, open the "Component->Install Packages" Delphi 5 main menu and add the System32\dclodac50.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac50.bpl (if you are using 64-bit Windows) package using the Add button.
NOTE: To compile ODAC based Delphi 5 applications, add the ODAC\Source directory to "Library Path". If you want to use precompiled Source Code, add the ODAC\Lib\Delphi5 directory to "Library Path".
Home


Installing ODAC for C++Builder 6 using IDE

Perform the following steps:

  1. Build and make the dac60.bpk DAC run-time package.
  2. Build and make the dacvcl60.bpk DAC GUI related package.
  3. Build and make the dcldac60.bpk DAC design-time package.
  4. Build and make the odac60.bpk ODAC run-time package.
  5. Build and make the odacvcl60.bpk ODAC GUI related package.
  6. Build, make, and install the dclodac60.bpk ODAC design-time package.
  7. Add the ODAC\Source and ODAC\Source\CBuilder6 directory to "Library Path".
Home


Installing ODAC for C++Builder 6 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\CBuilder6 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\CBuilder6
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\CBuilder6 directory.
    *.dcu, *.obj, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\CBuilder6 directory.
    *.hpp files will be copied to the ODAC\Include\CBuilder6 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\CBuilder6\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\CBuilder6\*.bpl files to the SysWOW64 directory.
  5. Run C++Builder 6.
  6. Install the dclodac60.bpl ODAC design-time package. For this, open the "Component->Install Packages" C++Builder 6 main menu and add the System32\dclodac60.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac60.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Add the ODAC\Lib\CBuilder6 and ODAC\Include\CBuilder6 directories to "Library Path".
Home


Installing ODAC for C++Builder 5 using IDE

Perform the following steps:

  1. Build and make the dac50.bpk DAC run-time package.
  2. Build and make the dcldac50.bpk DAC design-time package.
  3. Build and make the odac50.bpk ODAC run-time package.
  4. Build, make, and install the dclodac50.bpk ODAC design-time package.
  5. Add the ODAC\Source and ODAC\Source\CBuilder5 directory to "Library Path".
Home


Installing ODAC for C++Builder 5 using make-files

Perform the following steps:

  1. Go to the ODAC\Source\CBuilder5 directory.
  2. Find in the 'Make.bat' line containing
    set IdeDir="%PROGRAMFILES%\Borland\CBuilder5
    and make sure that correct path to IDE is set (always include forward quote and do not include ending quote).
  3. Run 'Make.bat'. Binaries will be copied to the Bin, Include, and Lib subdirectories of the ODAC directory:
    *.bpl files will be copied to the ODAC\Bin\CBuilder5 directory.
    *.dcu, *.obj, *.bpi, *.lib, and *.res files will be copied to the ODAC\Lib\CBuilder5 directory.
    *.hpp files will be copied to the ODAC\Include\CBuilder5 directory.
  4. If you are using 32-bit Windows, copy ODAC\Bin\CBuilder5\*.bpl files to the System32 directory. If you are using 64-bit Windows, copy ODAC\Bin\CBuilder5\*.bpl files to the SysWOW64 directory.
  5. Run C++Builder 5.
  6. Install the dclodac50.bpl ODAC design-time package. For this, open the "Component->Install Packages" C++Builder 5 main menu and add the System32\dclodac50.bpl (if you are using 32-bit Windows) or SysWOW64\dclodac50.bpl (if you are using 64-bit Windows) package using the Add button.
  7. Add the ODAC\Lib\CBuilder5 and ODAC\Include\CBuilder5 directories to "Library Path".
Home


Installing ODAC for Lazarus using IDE

Open and install the dclodac10.lpk ODAC design-time package.
Home


Installing ODAC for Lazarus using make-files

Lazarus doesn't support this way of installing components. You should use the Using IDE way to install ODAC.
Home

 

 


© 1997-2014, Devart. All Rights Reserved.