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

net.sf.aguacate.context.spi.sql.impl.SentenceSqlSelectSingle Maven / Gradle / Ivy

There is a newer version: 0.10.9
Show newest version
package net.sf.aguacate.context.spi.sql.impl;

import java.sql.SQLException;
import java.util.List;
import java.util.Map;

import net.sf.aguacate.function.FunctionContext;
import net.sf.aguacate.function.FunctionEvalResult;

public class SentenceSqlSelectSingle extends AbstractSentenceSql {

	private final String table;

	private final String[] required;

	private final String[] optional;

	private final String[] outputContext;

	private final String outputName;

	public SentenceSqlSelectSingle(String name, String message, String table, List methods,
			List required, List optional, List outputContext, String outputName) {
		super(name, message, methods);
		this.table = table;
		this.required = required.toArray(new String[required.size()]);
		this.optional = optional.toArray(new String[optional.size()]);
		this.outputContext = outputContext.toArray(new String[outputContext.size()]);
		this.outputName = outputName;
	}

	@Override
	public FunctionEvalResult evaluate0(FunctionContext functionContext, Map context)
			throws SQLException {
		return new FunctionEvalResult(true, functionContext.databaseInterface().executeSelectValue(getName(),
				getMessage(), functionContext.acquireConnection(), table, context, required, optional));
	}

	@Override
	public String[] getOutputContext() {
		return outputContext;
	}

	@Override
	public String getOutputName() {
		return outputName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy