DatabaseMeta activeDatabaseMeta = getActiveDatabaseMeta( databaseMeta );
SQLConnection sqlConnection = getConnection( activeDatabaseMeta );
String sql = null;
try {
if ( ( sqlConnection == null ) || !sqlConnection.initialized() ) {
logger.error( Messages.getInstance().getErrorString( "SQLBaseComponent.ERROR_0007_NO_CONNECTION" ) ); //$NON-NLS-1$
// TODO: throw an exception up the stack.
return null;
}