@Override
public SchemaInfo getSchemaInfo() {
if (this.connUtil.getDbType() == DbType.MYSQL) {
// Get the Schema info from the URL (has the form jdbc:mysql://host/schema)
RegexUtil ru = new RegexUtil(".*/([^/]+)");
if (!ru.matches(this.getUrl())) {
return null;
} else {
String schemaName = ru.getMatches(this.getUrl())[0].getGroups()[0];
return new SchemaInfoImpl(schemaName, null);
}