Hallo Gurus
I’m new for Bonita and new For java. I work with bonita 6.3.
I have made a Workflow that work with a Oracle database.
But I have too many connector.
The idea is to have one unique connector to populate at the beginning of the process all my global variable.
But this idea not work.
The question is
Can I populate all my process data (defined at process level) with a simply assignment made into a unique groovy connector?
For example I have two global data “p1” and “p2” and a global list “my_list” and a groovy connector (scripting groovy).
This data and the connector are defined at process level.
I execute the following code
import groovy.sql.Sql
def String query=“select data1,data2 from bonita_parameters where ID=1” // This return only one record
Sql sql = BonitaSql.newInstance( jdbcURL, jdbcUsername, jdbcPassword, new oracle.jdbc.OracleDriver())
sql.eachRow(query,{row-> p1 = row.data1 p2 = row.data2 });
def list=[:]
query=“select desc,id from TABLE_1 order by 1,2” // This return many record and i Use this list for populate a “List Widget” in my form
sql.eachRow(query,{row-> list.put(row.descrizione,row.id)});
sql.close();
my_list=list
But at the end of this script (that work fine) my variables is empity.
Thank in advance
Regards