Sparx Systems Forum

Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: pisokol on February 03, 2015, 01:47:40 am

Title: Where is stored value of element.notes in EAObject
Post by: pisokol on February 03, 2015, 01:47:40 am
I must write a simply select statement for select notes value sets for element, but...
where is stored this value in EAObjects?
Title: Re: Where is stored value of element.notes in EAOb
Post by: qwerty on February 03, 2015, 10:56:23 am
Code: [Select]
SELECT Notes FROM t_object
q.
Title: Re: Where is stored value of element.notes in EAOb
Post by: pisokol on February 03, 2015, 07:41:06 pm
tnx :) I tried it first, but... t_object doesn't contains field Notes. It is only Note, but it is empty.
Title: Re: Where is stored value of element.notes in EAOb
Post by: pisokol on February 03, 2015, 09:30:14 pm
It's works if the SQL statement is like this
"SELECT Note as Notes FROM t_object".
Without alias "as Notes" it doesn't work correctly, returned empty string.
Title: Re: Where is stored value of element.notes in EAOb
Post by: qwerty on February 03, 2015, 09:49:21 pm
You should have stated that you run it from EA's search tab :-)

q.
Title: Re: Where is stored value of element.notes in EAOb
Post by: pisokol on February 03, 2015, 09:57:17 pm
sorry, of course, its was only for quickly testing in EAModelSearch
tnx