Subject problem with call a stored procedure
From vari <varieventuali2007@gmail.com>
Date Mon, 09 Jul 2018 05:20:44 -0400
Newsgroups dbase.getting-started

I nedd a help, I create a stored procedure in firebird and call it in a dbase programm (dbase version 2.21) in this way:

d = new ProjectInvoiceDB()  
p = new StoredProc()
p.database = d
p.procedureName = "Prova_procedura"
p.active = true

p.params["colimn1"].value -> return only the first row but the stored procedure return more rows
-> I need to receive a rowset with all the rows theat the stored produce

Could you help me please?