fuzzycsv.rdbms.stmt.SqlRenderer.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fuzzy-csv Show documentation
Show all versions of fuzzy-csv Show documentation
A groovy/java tabular Data (from CSV,SQL,JSON) processing library that supports fuzzy column matching,tranformations/merging/querying etc
package fuzzycsv.rdbms.stmt
import fuzzycsv.rdbms.FuzzyCSVDbExporter
interface SqlRenderer {
String modifyColumn(String tableName, FuzzyCSVDbExporter.Column column)
String addColumn(String tableName, FuzzyCSVDbExporter.Column column)
String createTable(String tableName, List columns)
String quoteName(String name)
}