Uses of Interface
st.orm.BindVars
Packages that use BindVars
-
Uses of BindVars in st.orm
Modifier and TypeMethodDescriptionstatic ElementGenerates a SET clause using the specifiedBindVars.static ElementGenerates a VALUES clause using the specifiedBindVarsfor batch insertion.static ElementCreates a new var element that can be used to specify individual bind variables in the query.static ElementGenerates a WHERE clause using the specifiedBindVarsfor batch operations. -
Uses of BindVars in st.orm.spi
Methods in st.orm.spi that return BindVarsModifier and TypeMethodDescriptionQueryFactory.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch. -
Uses of BindVars in st.orm.template
Methods in st.orm.template that return BindVarsModifier and TypeMethodDescriptionPreparedStatementTemplate.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch.QueryTemplate.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch.SqlTemplate.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch. -
Uses of BindVars in st.orm.template.impl
Methods in st.orm.template.impl that return BindVarsModifier and TypeMethodDescriptionElements.Set.bindVars()Returns the value of thebindVarsrecord component.Elements.Values.bindVars()Returns the value of thebindVarsrecord component.Elements.Var.bindVars()Returns the value of thebindVarsrecord component.Elements.Where.bindVars()Returns the value of thebindVarsrecord component.JpaTemplateImpl.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch.PreparedStatementTemplateImpl.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch.SqlTemplateImpl.createBindVars()Create a new bind variables instance that can be used to add bind variables to a batch.Constructors in st.orm.template.impl with parameters of type BindVarsModifierConstructorDescriptionCreates an instance of aSetrecord class.Creates an instance of aValuesrecord class.Creates an instance of aVarrecord class.Where(Elements.Expression expression, BindVars bindVars) Creates an instance of aWhererecord class.