In the previous section we studied about the setParameter. Here, we will see setParameter to set a numbered parameter.
We are going to develop an example code to use the numbered parameter in setParameter() method.
setParameter(int numberedParamter, Object val): This method binds the argument to a positional parameter. It takes two parameter. Positional parameter number and its value. It also returns an instance of jpa query.
Steps to develop the code:
Database Table: student
| CREATE TABLE `student` ( `id` int(11) NOT NULL auto_increment, `sname` varchar(100) NOT NULL, `sroll` int(11) NOT NULL, `scourse` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) |
Model Class: Student.java
| /** * */ package roseindia; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.Table; /** * @author Administrator * */ @Entity @Table(name="student") public class Student { @Id @GeneratedValue private int id; /** * @return the id */ public int getId() { return id; } /** * @param id the id to set */ public void setId(int id) { this.id = id; } @Column(name="sname", length=100,nullable=false) private String sname; /** * @return the sname */ public String getSname() { return sname; } /** * @param sname the sname to set */ public void setSname(String sname) { this.sname = sname; } @Column(name="sroll",nullable=false) private int sroll; /** * @return the sroll */ public int getSroll() { return sroll; } /** * @param sroll the sroll to set */ public void setSroll(int sroll) { this.sroll = sroll; } @Column(name="scourse",length=10,nullable=false) private String scourse; /** * @return the scourse */ public String getScourse() { return scourse; } /** * @param scourse the scourse to set */ public void setScourse(String scourse) { this.scourse = scourse; } } |
Main Class: JPASetParameterNumberedParameter.java
| /** * */ package roseindia; import java.util.Iterator; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.EntityTransaction; import javax.persistence.Persistence; import javax.persistence.Query; /** * @author Administrator * */ public class JPASetParameterNumberedParameter { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub EntityManagerFactory emf=Persistence.createEntityManagerFactory("jpa"); EntityManager em=emf.createEntityManager(); try{ EntityTransaction entr=em.getTransaction(); entr.begin(); Query query=em.createQuery("SELECT st FROM Student st WHERE st.sroll > ?1"); query.setParameter(1, 100); List stuList=query.getResultList(); Iterator stuIterator=stuList.iterator(); while(stuIterator.hasNext()){ Student st=(Student)stuIterator.next(); System.out.print("sname:"+st.getSname()); System.out.print(" sroll:"+st.getSroll()); System.out.print(" scourse:"+st.getScourse()); System.out.println(); } entr.commit(); } finally{ em.close(); } } } |
Output:
|
log4j:WARN No appenders could be
found for logger log4j:WARN Please initialize the log4j system properly. Hibernate: select student0_.id as id0_, student0_.scourse
as sname:Vinod sroll:101 scourse:MCA sname:Ravi sroll:102 scourse:M.Tech. sname:Suman sroll:103 scourse:PHD sname:Noor sroll:104 scourse:Tourism |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: JPA setParameter (Numbered Parameter)
Post your Comment