Recent content by Peter Laursen

  1. P

    DOA and Memory Sleuth from TurboPower

    Hi, I use Memory Sleuth to find leaks in my app. As expected DOA leaks a little, nothing special. MS can filter out known leaks so the programmer can focus on the leaks in his own source. Does anyone have a filter database with known leaks in DOA? Peter Laursen ptl@edbgruppen.dk
  2. P

    BUG: DOA, Win2000 and 8.1.6 client

    Sorry, smilies changed the code, here is the correct code: { -- RUN THIS IN SQLPLUS: drop table t2; drop table t1; drop sequence t1_seq; drop sequence t2_seq; create table t1(a number primary key, b number not null); create table t2(a number primary key, b number not null references t1(a))...
  3. P

    BUG: DOA, Win2000 and 8.1.6 client

    Hi, We are experiencing a weird bug. The problem occurs only when combining an 8i client on Win 2000 and DOA. Description: In Oracle make two tables both with primary keys maintained by a trigger and a sequence. Make a foreign key between them. In Delphi/DOA using TOracleQuery, insert a row into...
  4. P

    ISAPI, TWebModule and TOracleSession

    Does anyone here have experience using DOA for databaseacces in an ISAPI application? I am having trouble with the multithreaded aspect of the webmodule. I place an TOracleSession in the webmodule at designtime and set it as the session property of my TOracleQueries and TOracleDatasets. Now...
  5. P

    DOA, Delphi5,ISAPI and contentproducers

    How well does DOA work together with Delphi5 ISAPI and ContentProducers? I need to webenable parts of a two-tier client/server app that uses Delphi4, DOA and Oracle 8.05. I rather new to webprogramming, links to codeexamples or good texts on the subjct appreciated :-) TIA Peter Laursen
  6. P

    Record changed by another user

    Hi Dirk Assuming you are using TOracleDataset, what is the refreshmode? Try to set it to AfterUpdate. Peter Laursen
  7. P

    ORA-03127: no new operations...

    further information: in the Main forms FormCreate the last line is: Application.OnException := EndExcept; EndExcept has this code: ExecNewProcess(ParamStr(0)+' -RESTART /D:'+dmMainSession.MainSession.LogonDatabase, False, False, Dummy); dmMainSession.MainSession.LogOff...
  8. P

    ORA-03127: no new operations...

    Hi. I am getting an ORA-03127 and Im not sure what it means. Delphi 4 CS, DOA 3.3.1, Oracle 8.0.5. This program restarts (a copy of)itself whenever an exception occurs, then HALTS, waits 5 minuttes and proceeds. The error happens when we shut Oracle down each night for cold backup. Oracle...
Back
Top