Recent content by Rocker

  1. R

    Cursor variables

    I wrote a query. If I place it into SQL property of TOracleDataSet, then it executes just one second, but if I place it into the package as ref cursor, it executes 15 seconds and above. I use the following script to call the procedure: begin stfrep.getpodkat(pdat1 => dat1...
  2. R

    Problems with TOraclePackage

    I call them like this: procedure a; var m1, m2 : Integer; begin m1 := OraclePack.CallIntegerFunction('getCurMonth', []); m2 := OraclePack.CallIntegerFunction('getCurMonth', [now]); end; Thanks a lot.
  3. R

    Problems with TOraclePackage

    There are,for example, function definitoins: function getCurMonth return number; function getCurMonth(d in date) return number; A error message is about parameters of these function. I don't remember its... Thanks a lot.
  4. R

    Problems with TOraclePackage

    I use the DOA in my programs and I've got some problems with using these components. I'm interested in the TOraclePackage component . DOA version is 3.4.3, Delphi is 5. I can't use overloaded functions in my Oracle Packages, if I call them from Delphi's program. A package's status is valid. When...
Back
Top