String setStatement(int elemAt) throws Exception

Returns a single SQL statement belonging to the operation at the position of elemAt.

Example

int msgSize = size();
for (int ido = 0; ido < msgSize; ido++)
{
    // prints out the statement of the (ido)th operation
    System.out.println("MyMsgGenerator-Statement : " +
         dbe.getStatement(ido));
}