Hibernate (Java) -- by jps sasadara
HQL & JPAQuery for Springboot => https://drive.google.com/drive/u/1/folders/18KA0A0EKYmn6Z7auazNquPDaweqPQvHI https://www.baeldung.com/jpa-join-types (only if we want to write join query, but in HQL no need of using join key word , if we can correctly implement the mapping classes ) Native SQL for Springboot => https://drive.google.com/drive/u/1/folders/17vdDhEXBKtbWpTkYUy5UcF_n_r2G-YDy projects => https://drive.google.com/drive/folders/14x_9TeE5SZq6ECZqCmoBaGTgOUSssuqm?usp=sharing We can write plan SQL Query in hibernate using session.createSQLQuery(sqlSearch); Eg-:: String sqlSearch = SQLVarList.MSSQL_DEVICEOPERATIONREPORT_SQL2 + where + orderBy; Query querySearch = session.createSQLQuery(sqlSearch); querySearch = setD...
Comments
Post a Comment