com.vtence.tape.SelectStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tape Show documentation
Show all versions of tape Show documentation
A lightweight Java data mapping library
package com.vtence.tape;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import static java.util.Arrays.asList;
public class SelectStatement implements Statement {
private final String table;
private final String alias;
private final Map> columns = new HashMap<>();
private final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy