result of a "MySQL select" query in a form list

1
0
-1

Hi,

in bonita 5.x I can have the result of a mySQL select query in a form list as shown in http://www.youtube.com/watch?v=Xw1JWRnejeA

in bonita 6.x, I tried to do the same thing but It doesnt' work because I cant't transform the result of the query to a list.

How can I do?

Thank you.

2 answers

1
+1
-1
This one is the BEST answer!

I create a diagram that includes two processes illustrating two different solutions to initialize a drop down list (select widget).

First solution use a transient step data. The transient step data is a Text (java.lang.String) with option multiple active (becoming a java.util.List<java.lang.String>). The transient step data is initialized with a MySQL connector on enter of the step. Connector is configured to connect to the database and run a query that select one column in a database table. Content of the column will be saved in the transient step data. The data is used to defined the available values of the select widget. Main limitation of this solution is that in case of server shutdown, if the task is pending, drop down list will be empty. In fact connector on step enter is only run once and transient data are not saved. A second limitation related to the fact that connector is only run once is that for a pending step, if database is updated, change will not be reflected in the drop down list.

The second solution is a lot more technical. It use a form transient data initialized with a Groovy script. Form transient data are initialized each time you load the form and so will reflect after a refresh any database modification. The Groovy script that initialize the form transient data instantiate, configure and run the MySQL connector programmatically. This workaround also require to manually add the MySQL connector jar file (and dependencies) in process configuration.

Note that the second option is a lot easier to use with Bonita BPM subscription editions as form transient data can be initialized using connectors.

Comments

Submitted by WorkBonita on Tue, 11/25/2014 - 11:45

Hi,

thank you very much. It works.

But why using transient data?

Submitted by antoine.mottier on Tue, 11/25/2014 - 11:49

As data is already stored in MySQL database I assume that we don't want to duplicate them.

Using a non-transient data would lead the Bonita Engine to store the data in database associated with the Engine and so would lead to duplication. Still this is a valid solution that should also cover the use case.

1
0
-1

Please one more question about that.

the connector works if I use yours. But when I try to create my own connector, the last step is different from you. The connector does not recognize the city_name data field used in the query.

Please why?

Comments

Submitted by antoine.mottier on Tue, 11/25/2014 - 14:06

city_name is a name of a column of one of the tables of my test database. You should adapt the SQL query to your own scenario.

Submitted by WorkBonita on Tue, 11/25/2014 - 18:40

Yes I know, i adapted the query but I have a problem with the last step of my connctor. The connector does not recognize the name data fiels used in my query. I have a table "patient" with a column "name". so I have the Query : select name from patient. but in the last step in the connector, the variable patient_name can not get the value of "name" as you did in your example.

Submitted by antoine.mottier on Tue, 11/25/2014 - 19:58

Maybe you can share with me your process diagram (the .bos file) and a dump of your database in order for me to do some test?

Submitted by WorkBonita on Wed, 11/26/2014 - 10:36

Yes Sure, you can download it from : http://filex.univ-lille2.fr:8080/get?k=zCR4MnBTw9hjCiD4TT9

I have a simple database called "sup" with one table called "patient" with one column called "name"

Submitted by WorkBonita on Wed, 11/26/2014 - 10:53

sorry, le colum is called : "nom"

Submitted by antoine.mottier on Wed, 11/26/2014 - 11:45

In your connector configuration, you should select "Graphical mode" instead of "Script mode". Select the option "n rows x 1 colulmn".

I recommend you reconfigured you connector from scratch as an issue might exist if you just update the existing configuration (I'll try to do more test).

Submitted by WorkBonita on Wed, 11/26/2014 - 13:27

but I don't find when I have to choose the graphical mode. The software doesn't give me the possibility to choose the graphical mode !

Submitted by WorkBonita on Thu, 11/27/2014 - 14:58

I reinstalled my software and now it works.

Thank you.

Submitted by WorkBonita on Thu, 11/27/2014 - 14:58

I reinstalled my software and now it works.

Thank you.

Notifications