Recent content by zhives

  1. Z

    TOracleObject.Create with

    Thank you very much! It works wonderfully! Hives Zoltan
  2. Z

    TOracleObject.Create with

    We downloaded DOA 3.4.5 evaluation version, and would like to get some further help. The mentioned TOracleObject.Create() method works fine in this version, but we can't write suitable code to pass array-like parameter to MyProc. The question is that what method should we use to create OraObj...
  3. Z

    TOracleObject.Create with

    OK, thanks, we'll try it. Hives Zoltan
  4. Z

    TOracleObject.Create with

    Hi, - DOA version: 3.3.1 - Database and Net8: 8.1.7 (WinNT) - The code in our program: procedure TfrmMain.Button1Click(Sender: TObject); var OraObj: TOracleObject; begin OraObj := TOracleObject.Create(osObject, 'X_Table', ''); try ; //Query.SetComplexVariable() etc. finally...
  5. Z

    DOA 3.3.1, parameter passing

    Hi, I'd like to pass array parameter with DOA 3.3.1 to a SP like this: create procedure MyProc (T in X_Table); where X_Table is my own type: create type X_Item as object (N number); create type X_Table as table of X_Item; How can I do it from Delphi 5 Prof? Any advice would be very...
  6. Z

    TOracleObject.Create with

    There are 2 types and a procedure in our database, created by the following commands: create type X_Item as object (N number); create type X_Table as table of X_Item; create procedure MyProc (T in X_Table); We'd like to pass an object from Delphi program to Oracle using the next code...
Back
Top