PackageWizard for Delphi 2005

Hello,

there is no PackageWizard (among other things) in delphi 2005.

But I found a way for a standalone PackageWizard. After compiling the following source with runtime pacakages I have a programm that I can install under tools of delphi 2005.

Code:
program PackageWizard;

uses
  Forms,
  OracleTools;

{$R *.res}

begin
  Application.Initialize;
  OracleTools.DoPackageWizard;
end.
I have compiled with d7, but I think it must work with delphi 2005 too.

By the way a feature request:
  • Support of datatype integer
  • Support of normal stored functions and procedures.
  • Beware the camlecase used in the package

Ciao Heinz Z.
 
Back
Top