Subject How to return recordset from stored procedure?
Author firebirdsql
I got the following procedure:

CREATE PROCEDURE test_groups
AS
BEGIN
SELECT group_name FROM groups;
END^