cancel
Showing results for 
Search instead for 
Did you mean: 

Insert and list data in act_hi_attachment

dorigon
Champ in-the-making
Champ in-the-making
Good afternoon I would like to know how to retrieve the data entered or to enter data in the column act_hi_attachment database?
1 REPLY 1

vasile_dirla
Star Contributor
Star Contributor
Hi, you could add data into this table like that:
<code>
attachment = taskService.createAttachment(…);
</code>
and the attachment could be read like that:
<code>
attachment =  taskService.getAttachment()
</code>