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

org.hibernate.loader.plan.exec.query.spi.NamedParameterContext Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.loader.plan.exec.query.spi;

/**
 * The context for named parameters.
 * 

* NOTE : the hope with the SQL-redesign stuff is that this whole concept goes away, the idea being that * the parameters are encoded into the query tree and "bind themselves"; see {@link org.hibernate.param.ParameterSpecification}. * * @author Steve Ebersole */ public interface NamedParameterContext { /** * Returns the locations of all occurrences of the named parameter. * * @param name The named parameter. * * @return the array of locations. */ public int[] getNamedParameterLocations(String name); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy