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

org.mentabean.sql.param.Param Maven / Gradle / Ivy

There is a newer version: 2.2.4
Show newest version
package org.mentabean.sql.param;

public interface Param {

	/**
	 * Represents the parameters in query. In other words, this method returns a String
	 * with the expression exactly as will be shown in SQL before its execution.
	 * @return String
	 */
	public String paramInQuery();
	
	/**
	 * The parameter's values
	 * @return Object[]
	 */
	public Object[] values();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy