Recent content by cadotp

  1. C

    DOA in French!

    Another mistake (5 years later...) for french version : ltVerifyFail := 'La v
  2. C

    Don't update string field

    Thanks a lot Marco ! It works as I want by modifying this property :cool: . I've looked around StringField properties :eek: , DataSet properties :eek: , but not until OracleSession properties :confused: . I was sure you got the answer... ;)
  3. C

    Don't update string field

    I am using a TDBEdit for a string field of my DataSet. When the dataset is in edit mode, I change value of field string by deleting end spaces of the string. In the database, my string field type is VARCHAR2(19). But when I post (and commit), spaces at the end of the string are still there ...
  4. C

    ExpressQuantumGrid

    YES! DOA and ExpressQuantumGrid are fully compatible ! (EQG is a very good choice !)
  5. C

    Oracle cursors still opened after DataSet.Close

    Context: Windows 95b - Delphi4 UP3 - DOA 3.3.3 - Oracle 8.1.6 When I close my dataset (using Close method or setting Active property to False), Oracle cursor associated to dataset query stay opened. I can see that Oracle cursor is still opened when I query v$open_cursor view. How can I close...
  6. C

    Refresh a single Record

    You're right (as usual)!! This property (Debug) is absolutely marvellous !! Explanation : 'UpdatingTable' property of my dataset was wrong (this property was filled a long time ago)! This problem enables me to understand 'updatable view' principle and to use correctly 'UpdatingTable' property...
  7. C

    Refresh a single Record

    Context: Windows 95b - Delphi4 UP3 - DOA 3.3.3 - Oracle 8.1.6 I use a dataset where SQL property is a SELECT on a view (VIEW1). My view VIEW1 is a SELECT on a table (TABLE1). I have to update one record from table TABLE1. So, I want to update my view VIEW1 too. But I want to refresh only the...
  8. C

    DOA in French!

    Just one mistake : ltLogonTitle := 'Connexion'; // (not 'Connection') Others constants are well translated. Thanks.
  9. C

    Threaded TOracleQuery

    Context: Windows 95b - Delphi4 UP3 - DOA 3.3 - Oracle 8.1.5 When a query is executed with .Threaded := True; .ThreadSynchronized := False; properties, a thread is created. When the query ended, OnThreadFinished event is generated. OK. The thread should be finished and it should be...
Back
Top