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

org.ict4h.atomfeed.jdbc.JdbcUtils Maven / Gradle / Ivy

There is a newer version: 1.10.1
Show newest version
package org.ict4h.atomfeed.jdbc;

public class JdbcUtils {

    public static String getTableName(String schema, String table) {
        if ((schema != null) && (!"".equals(schema))) {
            return schema + "." + table;
        } else {
            return table;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy