
it.unibz.inf.ontop.dbschema.impl.MySQLCaseNotSensitiveTableNamesQuotedIDFactory Maven / Gradle / Ivy
The newest version!
package it.unibz.inf.ontop.dbschema.impl;
import it.unibz.inf.ontop.dbschema.QuotedID;
import it.unibz.inf.ontop.dbschema.QuotedIDFactory.IDFactoryType;
import org.eclipse.jdt.annotation.NonNullByDefault;
@IDFactoryType("MYSQL-D")
@NonNullByDefault
public class MySQLCaseNotSensitiveTableNamesQuotedIDFactory extends MySQLAbstractQuotedIDFactory {
@Override
public QuotedID createAttributeID(String s) {
return createFromString(s, false);
}
@Override
protected QuotedID createFromString(String s) {
return createFromString(s, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy