Recent content by DAVIDSS

  1. D

    CachedUpdates and CommitOnPost

    Ok... Thanks...
  2. D

    CachedUpdates and CommitOnPost

    I've downloaded a new version, but I need to install in every client Delphi 6 to make this running...... there's no upgrades ?? I've my serial number and my product code, but the evaluation version don't have registration code... I've to purchase again DOA???????
  3. D

    CachedUpdates and CommitOnPost

    my version of DOA it's too old... maybe it's a bug fixed, the version 4.0 will work fine in Delphi 6 professional??
  4. D

    Using TOracleQuery select ... for update

    with this component you can use DML, Update, Insert, Delete... but with a Select Updatable I prefer a TOracleDataSet. why you don't use a TOracleDataSet?
  5. D

    CachedUpdates and CommitOnPost

    the master table also have foreign keys from another tables, that's why raise an parent key error, in the detail the key with problems not belong from the master, is from another table. but the real problem is the applyupdates, the OracleDataSet have all the data in place, also I have tested...
  6. D

    CachedUpdates and CommitOnPost

    OdsLicencia (Master) [Problems] OdsDetalleLicencia (Detail) [Problems] OdsDetalleOrden (Detail/Detail) [Ok] //after all changes in tables(insert, delete, edit) LE_Session.ApplyUpdates([OdsLicencia, OdsDetalleLicencia, OdsDetalleOrden], False); LE_Session.CommitUpdates([OdsLicencia...
  7. D

    CachedUpdates and CommitOnPost

    I have many problems with this, my form is master/detail, with CachedUpdates = True and CommitOnPost = False, when ApplyUpdates is called an oracle error raise: "parent key not found", some times is the master and some times is the detail because this error is not frequent, and the data in the...
  8. D

    ORA-12203

    everything is working good, because are Developer 6i forms running, and are working normal, just DOA doesn't connect with this message... I've made test with "Net8 Easy Config" and the connection is good... maybe some Key in the Registry, perhaps?? the problem is just in one Machine...
  9. D

    ORA-12203: TNS: unable to connect to destination

    What is wrong with the installation of Oracle 8i When I try to Connect: Session.Connected := True; Please Help!!
  10. D

    ORA-12203

    What is wrong with the installation of Oracle 8i ORA-12203: TNS: unable to connect to destination Please Help!!
  11. D

    OracleDataSet OnEdit, OnDelete

    Thanks for your help Eric and Marco... Despues de todo seguire luchando con estos componentes.... ------------------ David Samayoa Solis Analista Programador
  12. D

    OracleDataSet OnEdit, OnDelete

    I Found the answer!!!! in Designer6i, in table properties/advanced, there is a propertie named Index_Organized, the value most be NO, and the indexes in the model most have a TableSpace dedicated.... then generate the model in DBAdmin.... This most be in the documentation of DOA...
  13. D

    OracleDataSet OnEdit, OnDelete

    Please, I need an answer... I'm losing money Here..... ------------------ David Samayoa Solis Analista Programador
  14. D

    OracleDataSet OnEdit, OnDelete

    Well, I put this OnBeforeDelete: if OracleDataSet1.SearchRecord('ROWID', OracleDataSet1.RowId, [srFromBeginning]) then ShowMessage('Yes'); ShowMessage(OracleDataSet1.RowId); And the message say "Yes", then the other show the AEDkAADICDBAr4AAAA That means... yes, there is that row...
  15. D

    OracleDataSet OnEdit, OnDelete

    When I press the Delete button from the navigator the debugger show me this: - savepoint DOA_LOCKPOINT - select * from IMS_MARCA where rowid = OA_ROWID for update nowait - OA_ROWID = AEDkAADICDBAr4AAAA - rollback to savepoint DOA_LOCKPOINT Then the same message: Record has been deleted...
Back
Top