Sha256: 48a1b8064c14046db5d5bd7d19f9866eee1d7f280dbac1fb8b2d38cc0870e315

Contents?: true

Size: 239 Bytes

Versions: 2

Compression:

Stored size: 239 Bytes

Contents

CREATE PROCEDURE test_sproc_with_select_and_ops
(
	@output_number int     output,
	@output_text   varchar(10) output
)
AS
BEGIN
    select @output_number = 15
    select @output_text = 'results'

    select * from TEST_TABLE
END

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
marjoree-0.0.9 ./tests/sprocs/test_sproc_with_select_and_ops.sp
marjoree-0.0.1 ./tests/sprocs/test_sproc_with_select_and_ops.sp