Properties
SQLQuery - The SQL select query to executepublish - Specifies where the ouput of the query is sent.
E.g.
dbconn = new DBConnection("jdbc:mysql://trex.ucs.indiana.edu/test?user=root&password=mysql");
dbconn.SQLQuery="SELECT id, name FROM empl";
r = new URLResource();
r.port[0].publishTo("file:///u/hgadgil/test.xml");
r.port[0].subscribeFrom(dbconn.publish);
f = new Flow();
f.addComponents(r);
f.addStartActivities(dbconn);
f.start("1");
Status: Implemented