Spring Boot Restful + PostgreSQL + JPA Hibernate Stored Procedure Functions @Procedure - Part 9

preview_player
Показать описание
In this video I have explained how to call Stored Procedure / DB Functions and what are the ways to handle the results.

Repository Link:

Topics covered in this video:

1. Entity Manager
2. @Procedure
3. @NamedStoredProcedureQuery
4. @SqlResultSetMapping

Runtime Exceptions covered in this video:

Рекомендации по теме
Комментарии
Автор

Thank you man, this is exactly what I needed. I will try this out and get back to this video.

semugutkha
Автор

Great stuff man.. i will definitely try it and get back if i face anything

pulkitkaushik
Автор

Hi Bro, This is realy useful for me and thanks for sharing this vedio. but ur voice is very lower to hear u

TheLoveking
Автор

Thanks. lot of thanks, was an great helpfull video.

MessierNoventayNueve
Автор

Thanks for giving a Nice Explanation for JPA with the procedure ..But the whole video is for the calling function not the Store procedure in PostgreSQL ..Could you please give that example?

sagarsomwanshi
Автор

Hi, i am getting following error in oracle DB with same

ORA-06553: PLS-306: wrong number or types of arguments in call to 'procedure'

thiru
Автор

I am getting an exception that says.
Cannot invoke "java.util.iterator" because "this.parameters" is null.

rajchavan
Автор

Hi Man,
Please help...How to map multiple result set from one single SP.

karthickselvam
Автор

@Procedure didn't work if the function is not defined in the public schema on postgresql

AhmadHamid
Автор

How about procedure using multiple tables ? Please help me

minmai
Автор

Hello sir,
I am trying with these code but with SQL Oracle developer, I am not getting, can you help me

EjazAhmad-xscc
Автор

How i can create Stored Functions in Spring Boot????

nilolima
Автор

Nice video,
If there are placeholders in sql stored procedures, then how to handle it in spring boot.

Please explain this

yaswanthsatyavarapu
Автор

According to you, which one is better to call DB object in Spring boot.. please reply

HariKrishna-irmx
Автор

Hi Sir,
I am getting "No Dialect mapping for JDBC type: 1111" this error for void method
is there any fix for this

ThabiraGamingShorts
Автор

Is it possible to pass entire insert query to a function or procudre via spring jpa?

ciliyaciliya
Автор

What are the benefits of using @Procedure over @Query?

tanvia
Автор

Hello Mate, The video is very good and your explanation too. But in the real world project we get the result set from procedure from different tables.
Ex: select A.a, B.b, C.c
from table A, table B, table C
where A.id=B.id and B.id=C.id
column a from table A, column B from table B etc...how to handle this scenario or map in @Entity.

venkateshv