Recent content by P. Maquet

  1. P

    Problems with Cashed Updates

    You can suppress your column ID of type rowid, it is not the solution. In your query, simply add "rowid" amongst the columns list, like here : select t.*, t.rowid from MY_TABLE t ... ROWID is a system "virtual" field which represents the physical address of any Oracle record. Phil.
  2. P

    Delphi 6.01 patch and DataSnap (MIDAS) - New problems ?

    I use MIDAS and DOA components (Direct Oracle Access) in a 3 tiers application. After having installed D6 patch 6.01 I noticed that: 1
  3. P

    Cursor references support in MIDAS

    Thanks for your help, Frans. Both solutions I found (but one is enough) unfortunately need some changes in DOA sources : 1
  4. P

    Cursor references support in MIDAS

    The DOA Package Wizard offers a nice support of server-side cursor references : Lets say that you have a PL/SQL package procedure like : procedure select_something(p_id in NUMBER, crs in out t_ref_cursor) is begin open crs for select ... from ... where id = p_id; end; it wil be...
Back
Top