1. Executing stored procedures in Firebird using JPA NamedStoredProcedureQuery stackoverflow.com
|
2. Firebird support stored procedures and UDFs forum.hibernate.orgNewbie Joined: Sat Jun 25, 2005 11:18 pm Posts: 7 Summary: Can hibernate now or later be made to support non-table object "existence testing" and creation prior to hibernate executing any other schemaupdate methods against the database? Important for the availability of Firebird basic SQL functions which are standard in other databases. Useful for the declaration of helper Firebird stored procedures. ... |
3. using stored procedure width Hibernate3 & Firebird forum.hibernate.org |
4. How to call stored procedure of Firebird forum.hibernate.orghello sir, I have a stored proc [b]TESTSELECTSP [/b] written in firebird DB: CREATE PROCEDURE TESTSELECTSP RETURNS ( VBOOKNAME VARCHAR(50), VAUTHOR VARCHAR(50), VPUBLICATION VARCHAR(50), VPRICE INTEGER ) AS BEGIN For Select BookName,Publication,Author,Price from Books into :vBookName,vAuthor,vPublication,vPrice Do Begin suspend; End END ^ I have the below code written for mapping, [code] |