Objects and Intellisense

partial

Member
When writing pl/sql code, the intellisense for input parameters of an object method show after entering "(", but not after entering commas. Can you have the input parameters show after a comma is pressed?

Thanks
 
no intellisense when the last comma is pressed in the procedure. Here is some example code:
------------------------

CREATE OR REPLACE TYPE test_obj AS OBJECT
(
test_id VARCHAR2(100),
CONSTRUCTOR FUNCTION test_obj RETURN SELF AS RESULT,
MEMBER PROCEDURE test_message(p_message IN CLOB, p_bool IN boolean)
);
CREATE OR REPLACE TYPE BODY test_obj IS
--------------------
CONSTRUCTOR FUNCTION test_obj RETURN SELF AS RESULT IS

BEGIN
self.test_id := 'NA';
RETURN;
END;
--------------------------------------------------
MEMBER PROCEDURE test_message(p_message IN CLOB, p_bool IN boolean) IS
BEGIN

dbms_output.put_line(p_message);

END test_message;
END;

create or replace procedure usp_test_obj is
l_test test_obj;
BEGIN
l_test.test_message(p_message => fs,

end usp_test_obj;
 
Back
Top