com.github.vkorobkov.jfixtures.sql.dialects.Sql99 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfixtures Show documentation
Show all versions of jfixtures Show documentation
Easy test data creator for SQL databases
package com.github.vkorobkov.jfixtures.sql.dialects;
import com.github.vkorobkov.jfixtures.sql.SqlBase;
import com.github.vkorobkov.jfixtures.util.SqlUtil;
public class Sql99 implements SqlBase {
@Override
public String escapeTableOrColumnPart(String part) {
return SqlUtil.surround(part, "\"");
}
}