List<String> result = new ArrayList<String>();
if( stmts != null )
{
for( Integer idx = 0; idx < stmts.length; ++idx )
{
SQLStatement statement = stmts[idx];
if( statement != null )
{
String stringStatement = this.vendor.toString( statement );
if( stringStatement != null && stringStatement.length() > 0 )
{