Einzelnen Beitrag anzeigen

dfried

Registriert seit: 16. Aug 2005
486 Beiträge
 
#9

Re: Direct Oracle Access 4.0 für Delphi 2005

  Alt 24. Aug 2005, 16:35
Folgendes zum "fehlenden" Package Wizard in Delphi 2005 habe ich im Forum bei AllroundAutomatins gefunden:

Zitat:
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
Hoffe, das hilft dir weiter!

Gruß
Daniel
  Mit Zitat antworten Zitat