Recent content by sparis

  1. S

    [D6] Problem with TOraclePackage

    With Delphi5 with DOA 3.45 compos (for D5), I'm able to execute the next code: procedure TForm1.Button1Click(Sender: TObject); begin if pkgTest.CallBooleanFunction ('TEST_DOA_INT_RET_BOOL', ['p_int', 0]) then Edit1.Text := 'True' else Edit1.Text := 'False'; end; But with...
  2. S

    Not solved: Topic: AccessViolation when my server prog close

    I had the same problem when I used a TDataBase (BDE) with a TOracleSession in a same server prog. I resolved it by changing the order of the opening of these objects. I must open TDataBase before TOracleSession. If I don't do that, I have an AV.
  3. S

    AccessViolation when my server prog close

    In my program, I use too a TDataBase object. When I open the TOracleSession before the TDataBase, I have the AccessViolation but if I open the TDataBase before the TOracleSession, all is Ok !?!
  4. S

    AccessViolation when my server prog close

    Hi, I use TOracleSession in my Multitier Remote Data Module program. When I close this prog, I obtain an AccessViolation at address 78463A33 in module 'ntdll.dll'. I have DOA 345 with Delphi 5 on Win2000 SP2. NOTE: If I use at same time an ODAC TOraSession, no problemo, both close well.
  5. S

    Problem when I modify data in OnGetData of the TOracleProvider

    Do someone can try the DOA 3Tier demo with the following changes? On the server: - Add column 0 Test to the SELECT statement of DeptDataSet. - In the OnGetData event of DeptProvider use this code: [i] - Build the projet. Connect you with the Client application and you will obtain 'Operation...
  6. S

    Can't update if I modify data in OnGetData of the TOracleProvider

    I sent the same message in september 2000, but nobody answer me. I try again. [Delphi 3 C/S] 3-tiers project In the server side: I use a query in a TOracleDataSet plugged to a TOracleProvider. In the OnGetData event of the provider, I scroll the records of the dataset and change the value of a...
  7. S

    Can't update if I use TOracleProvider.OnGetData

    [Delphi 3 C/S] 3-tiers project In the server side: I use a query in a TOracleDataSet plugged to a TOracleProvider. In the OnGetData event of the provider, I scroll the records of the dataset and change the value of a field. This field can't be updated by the client. In the client side: When I...
  8. S

    TOracleDataSet.OnApplyRecord

    I identify that the problem occurs when the updated field can receives NULL. If I change a NOT NULL field in the UpdatingTable and I put False in the Applied parameter, the error was created and I can hold her in the OnReconcileError event in the client side. But if I change NULLable field and...
  9. S

    TOracleDataSet.OnApplyRecord

    I use a TOracleDataSet in a 3-tiers prog. In the server side I use stored proc for updating data in then OnApplyRecord event. When I found a error, I would like to advise the client side that data was not updated correctly. I tried to assign False to the Applied parameter and/or raise exception...
Back
Top