All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.akquinet.jbosscc.guttenbase.hints.ColumnNameMapperHint Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package de.akquinet.jbosscc.guttenbase.hints;

import de.akquinet.jbosscc.guttenbase.mapping.ColumnNameMapper;
import de.akquinet.jbosscc.guttenbase.statements.AbstractStatementCreator;
import de.akquinet.jbosscc.guttenbase.tools.CheckSchemaCompatibilityTool;
import de.akquinet.jbosscc.guttenbase.tools.CheckEqualTableDataTool;

/**
 * Map the way column names of a table are used. Usually you won't need that, but sometimes you want to map the names, e.g. to add `name`
 * backticks, in order to escape special characters.
 * 
 * 

* © 2012 akquinet tech@spree *

* * @Applicable-For-Source * @Applicable-For-Target * @Hint-Used-By {@link AbstractStatementCreator} to map column names * @Hint-Used-By {@link CheckEqualTableDataTool} to map column names * @Hint-Used-By {@link CheckSchemaCompatibilityTool} to map column names * * @author M. Dahm */ public abstract class ColumnNameMapperHint implements ConnectorHint { @Override public Class getConnectorHintType() { return ColumnNameMapper.class; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy