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

fuzzycsv.rdbms.stmt.SqlRenderer.groovy Maven / Gradle / Ivy

Go to download

A groovy/java tabular Data (from CSV,SQL,JSON) processing library that supports fuzzy column matching,tranformations/merging/querying etc

There is a newer version: 1.9.1-groovy4
Show newest version
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)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy