.386
.MODEL FLAT,STDCALL
OPTION CASEMAP:NONE
Include AddIn.inc
Include \WinAsm\Inc\WAAddIn.inc
.CODE
; This is the required entry procedure for the DLL. Do NOT make changes to this pr
DROP PROCEDURE multi_sample
GO
CREATE PROCEDURE multi_sample
AS
BEGIN
/* Result Set 1 */
SELECT product, "EXPENSIVE FOOD" category
FROM food
WHERE price >= $100.00
ORDER BY product
DROP PROCEDURE multi_sample
GO
CREATE PROCEDURE multi_sample
AS
BEGIN
/* Result Set 1 */
SELECT product, "EXPENSIVE FOOD" category
FROM food
WHERE price >= $100.00
ORDER