Recent content by stfkbf

  1. S

    Object Type Evolution

    Is there any news on when this might be fixed?
  2. S

    Object Type Evolution

    This still does not seem to be working ?
  3. S

    Object Type Evolution

    The above was also the issue in post "Type spec. displayed twice in object broswer". It was said that this would be fixed in ver. 6.1 of Pl/SQL developer. Is there any estimate on when a fix might be ready ?
  4. S

    Editing object data in tables

    When creating an object table: create table ORDER_LINE_ATTRIBUTE of TT_AT_ORDER_LINE; where tt_at_order_line is the base class of an object hierarchy it is not possible to edit the table using for update in the sql window: select treat(value(t) as tt_at_product_element), t.rowid from...
  5. S

    Quick/ER v1.2 is released

    Will attributes and member functions/procedures on object types be supported by QuickER in a future release ? Regards Thorbj
  6. S

    Codecompletion

    When calling a member function or procedure of an object type Pl/SQL developer does not list the parameters as with functions and procedures defined on packages. Would it be possible to have the same functionality for member functions and procedures as for ordinary functions and procedures ...
  7. S

    Pl/SQL beautifier

    When beautifying the following statement: if v_product_sub_number.get_d_product_status().product_status = bc.p_product_constants.c_product_status_ok then where v_product_sub_number is an object type and get_d_product_status is a member function returning an object (product_status is an...
  8. S

    Plsqldoc and object types

    The beta you sent fixes the problem. Thank you for looking into it :) Regards Thorbj
  9. S

    Plsqldoc and object types

    The following example illustrates the problem with ver. 1.1.6. Version 1.2beta does not seem capable of generating documentation for object types: CREATE OR REPLACE TYPE parent_type AS OBJECT ( -- Author : TBF -- Created : 26-04-2005 08:05:54 -- Purpose : attr1 NUMBER, MEMBER PROCEDURE...
  10. S

    Plsqldoc and object types

    I had no problems installing (with Pl/SQL developer closed) using the following version: PL/SQL Developer Version 6.0.5.926 (MBCS) 01.17670 - 20 user license Windows XP version 6,0 (build 2600) Service Pack 2 also with version 1.1.6 installed. Regards Thorbj
  11. S

    Plsqldoc and object types

    The problem with documenting object types does not seem to be fixed in the new beta version of plsqldoc either. Regards Thorbj
  12. S

    Plsqldoc and object types

    That would be nice thank you :)
  13. S

    Plsqldoc and object types

    The problem does not seem to be fixed in version 6.0.5 ?
  14. S

    Plsqldoc and object types

    I'll wait for release 6.0.5 then. Thanks Thorbj
  15. S

    Type spec. displayed twice in object broswer

    When creating an object type: create or replace type obj_test as object TYPE obj_test AS OBJECT ( attribute_1 VARCHAR2(20), member procedure test_proc ) ... and then adding another attribute using type evolution the object type specification will appear twice in the object browser. A...
Back
Top