Recent content by manas

  1. M

    Object array

    create or replace type T_A_KADEME as VARRAY (18) of T_KADEME create or replace type T_KADEME as OBJECT ( ALT_LIMIT INTEGER, UST_LIMIT INTEGER ) I created a package which contains the procedure, procedure D_C_TARIFF(pValue in T_TRFBIL, nValue2 in T_A_KADEME, nValue3 in T_A_KADEME, Woern...
  2. M

    Automatic Master/Detail configuration problem

    in oracledata.pas line=3053 if (ComponentState - [csAncestor] = [csDesigning]) and ((FMaster = nil) or (FMaster.ComponentState - [csAncestor] = [csDesigning])) then GetMasterDetailFields; The above if clause never executes the "then" condition. However, when we add if...
  3. M

    Automatic Master/Detail configuration problem

    YES. I remove master dataset and then recreate it but automatic configuration did not work again. I wonder Whether other users do not have such a problem. I use DOA since version 3.3.2 and I know all of the features of this component package. up to version 3.4.x auto configuration was working...
  4. M

    master-detail problem (possible BUG)

    RefreshOptions = [roBeforeEdit, roAfterInsert, roAfterUpdate, roAllFields] ------------------
  5. M

    Automatic Master/Detail configuration problem

    Automatic Master/Detail configuration was working fine with the previous versions. After updating to 3.4.5 I have to manually build master detail settings (i.e. DOA do not automatically configure them). All the following requirements are met: * The SQL property of the master and detail are set...
  6. M

    session commit problem

    in the manual it says that when you use cachedupdates record may remain locked. but how long?
  7. M

    master-detail problem (possible BUG)

    I encountered an interesting thing. This problem occurs when I use a LookUp field in the Master table. Any comments? Waiting support from Admin. Regards ------------------
  8. M

    master-detail problem (possible BUG)

    I use delphi 6 SP2,Oracle 8.1.7,DOA 3.4.6.1,Win2000 M: Master Table (EPIC_SYS_USER_GROUP) D: Detail Table (EPIC_SYS_USER_R_ROLES) D.GRP_ID is related with M.ID Detail table has relation to master table in Oracle (via Foreign Key). I use D in lmCheckImmediate locking mode. When I update a...
  9. M

    session commit problem

    Dear Sir, I use CacheUpdate,Delphi 6 SP2, and DOA 3.4.6. Sometimes even I commit with the below code, my record remains closed and commit does not work. ------------------------------------ session.ApplyUpdates([self],false); Session.CommitUpdates([Self]); Session.Commit...
  10. M

    session status

    Hello, When I open a session, v$session status is inactive. What is the meaning of active and inactive for v$session status? How can I change it to active from inactive? Best Regards,
  11. M

    session rollback problem

    Please let me know whether a CancelUpdate or CommitUpdate operation on the SessionDLL1, effect the records in Session1. Because, regarding my first question to you, I do not perform Roll back or CancelUpdate on Session1. Please, let me know whether my problem occur when externalSVC is used...
  12. M

    session rollback problem

    I do not roll back Session1, I roll back sessionDLL1. But, as SessionDLL1 is connected to Session1 by externalSVC, Session1 also rollbacks.As you mention, I use LockingMode = lmLockImmediate.
  13. M

    session rollback problem

    Main Session: Session1 Dll Session : SessionDLL1 I am editting a dataset(userflag) which is connected to the main session and waiting. When I perform CancelUpdate([dataset]) in SessionDLL1, Session1 rollbacks. P.S.: I use CacheUpdate for each table and CommitOnPost is False. SessionDLL1 is...
Back
Top