com.spikeify.aerospikeql.ExecutorStatic Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of aerospike-ql Show documentation
                Show all versions of aerospike-ql Show documentation
SQL wrapper for Aerospike database
                
            package com.spikeify.aerospikeql;
import com.aerospike.client.Value;
import com.aerospike.client.query.ResultSet;
import com.aerospike.client.query.Statement;
import com.spikeify.Spikeify;
import com.spikeify.aerospikeql.execute.Retrieve;
import java.util.List;
import java.util.Map;
class ExecutorStatic extends ExecutorAdhoc implements Executor {
	private String queryName;
	public ExecutorStatic(Spikeify sfy,
	                      QueryUtils queryUtils,
	                      Class tClass,
	                      String query,
	                      String queryName) {
		super(sfy, queryUtils, tClass, query);
		this.queryName = queryName;
	}
	@Override
	protected List        © 2015 - 2025 Weber Informatics LLC | Privacy Policy