Heinz Zastrau
Member
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.
I have compiled with d7, but I think it must work with delphi 2005 too.
By the way a feature request:
Ciao Heinz Z.
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.
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.