Newer
Older
simple-database / test / nl / astraeus / database / sql / TestSelect.java
package nl.astraeus.database.sql;

import nl.astraeus.template.EscapeMode;
import nl.astraeus.template.SimpleTemplate;
import nl.astraeus.util.Util;
import org.junit.Ignore;

import java.io.IOException;
import java.util.*;

/**
 * Date: 11/14/13
 * Time: 9:29 PM
 */
@Ignore
public class TestSelect {

    public static void main (String [] args) throws IOException {
        TestSelect tct = new TestSelect();

        tct.test();
    }

    public void test() throws IOException {
        String ct = Util.readAsString(getClass().getResourceAsStream("select.sql"));

        SimpleTemplate template = new SimpleTemplate("${", "}", EscapeMode.NONE, ct);

        Map<String, Object> model = new HashMap<>();

        List<String> keys = new ArrayList<>();

        keys.add("name");

        model.put("tableName", "person");
        model.put("keys", keys);

        System.out.println(template.render(model));
    }

}