Sha256: 26287edb88d09afe985ea8e6090e8141ed57f0bc12376fc4e093695aa89dcd96

Contents?: true

Size: 206 Bytes

Versions: 2

Compression:

Stored size: 206 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

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