Hi I am using AnyLogic's Process Modelling Library.
I have a DB named dbsewing06 that has a record of all the service delay times [ sewing (Name of Service) | sum_ct (Delay time) ]
For a service, I use the following code to get Delay time: selectFrom(dbsewing06) .where(dbsewing06.sewing.eq(SEW_06_16.getName())) .uniqueResult(dbsewing06.sum_ct, double.class)
SEW_06_16 here is the name of the Service in question.
However, I want to use the name from of Block dynamically. Is there any way to do this?