OUTPUT VARIABLE: jdbcConnection AS OBJECT Connection jdbcConnection = null; Connection jdbcConnection1; String retunValue = ""; try { Class.forName("com.mysql.jdbc.Driver"); jdbcConnection = DriverManager.getConnection("jdbc:mysql://localhost:3306/sakila","username","userpassword"); } catch (Exception e) { throw (ServiceException) new ServiceException(e.toString()).initCause(e); } IDataCursor pipelineCursor_1 = pipeline.getCursor(); IDataUtil.put( pipelineCursor_1, "jdbcConnection", jdbcConnection); pipelineCursor_1.destroy();