I’m teaching an MBPM Foundation class for ITC.
One of the participants asked if the Metastorm MBPM internal classes / methods are documented anywhere.
For example the class “IDataContainer” which he received when he executed the following SQL expression in a visual script code activity:
MetastormDefault conn=new MetastormDefault();
string sql="select grade from TBL_DR_FLIGHT_EMPLOYEES where CommonName=@traveler";
FlightBookingData.txtGrade = SelectSql(conn, sql, new QueryParameter[] {
new QueryParameter("@traveler", FlightBookingData.txtTraveler)});
sql="select Department from TBL_DR_FLIGHT_EMPLOYEES where CommonName=@traveler";
FlightBookingData.txtDepartment = SelectSql(conn, sql, new QueryParameter[] {
new QueryParameter("@traveler", FlightBookingData.txtTraveler)});
Thanks for any suggestions.
Rick Cole