String getSchemaName(int elemAt) throws Exception

Returns the table name or the procedure name of the operation at the position of elemAt.

Example

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