Recent content by igon

  1. I

    Lost Connection

    I am trying to find a way that if my application looses connection to the server that I can easily capture the error and attempt to reconnect or exit the application. I can fine no session error event to do this on. How can this best be accomplished with DOA.
  2. I

    Autonomous Transactions

    I would like to use a data aware form and when calling post have it post autonomously. For example: I add a patient to a database and while editing the patient I must add his insurance company and I do not want to use another session because of the overhead. On the post of the insurance...
  3. I

    TOracleEvent

    That would be excellent. When can we expect that enhancement? Thanks.
  4. I

    TOracleEvent

    Do you have a Oracle Event handler that does not spawn a separate session but would use the current open threadsafe connection. We are on low bandwidth and there is alot of overhead.
  5. I

    Autonoumous Transactions

    I am in a transaction and need to do an autonomous transaction within that transaction. For example: The program is adding a client. While adding the client one may need to add an insurance company from that screen but if the client screen is canceled I still want the insurance company...
  6. I

    Live queries

    When one workstation is in a record live with the statement SELECT TB.*,TB.ROWID FROM SOMETABLE WHERE ... and another workstation tried to do the same on the same record it appears as if the application is locked on the second workstaion until the first is done. Is there any way that the second...
  7. I

    passing session to dll variable

    The problem was that I was calling the share in the dll without first logging in the query in the main application. Could you please clearify the error for others in the future who may do this or put it in the help file. Thanks alot for the demo -- it helped solve the problem.
  8. I

    Examples

    Sorry, I meant to add this as a reply to my other post
  9. I

    Examples

    I still need the fix for this and any examples that you have to make sure that I am doing this right so I can get rid of the error.
  10. I

    Suggestion for debug

    When using debug = true - instead of a simple showmessage can you use more of a memo that can scroll so that long queries will no go off the screen and we could cut the query to clipboard for testing
  11. I

    passing session to dll variable

    yes -- I downloaded it yesterday
  12. I

    passing session to dll variable

    I tried using the share method on the load of my dll with the following code: function UT_Load(AppHandle:THandle;ASession:TOracleSession):Boolean;StdCall; var Antek_Ini: TIniFile; // INI file handle begin Result := TRUE; try Application.Handle := AppHandle; FM_MacroSetup :=...
  13. I

    passing session to dll variable

    What is the update on the fix for the following that was sent to me? I have continued my investigation, and have found that the following causes the problem: 1. In the host application a variable is declared. 2. In the DLL this variable is deleted. 3. In the DLL a new variable is declared =>...
Back
Top