Listing 2: Code to Populate tabTestValues INSERT tabTestValues VALUES ('sproc_1', 'I', 1, 'first_name', 'varchar(24)', 'input', 'jerry') INSERT tabTestValues VALUES ('sproc_1', 'I', 1, 'last_name', 'varchar(24)', 'input', 'feldsein') INSERT tabTestValues VALUES ('sproc_1', 'I', 1, 'age', 'int', 'input', 54) GO INSERT tabTestValues VALUES ('sproc_2', 'O', 2, 'product', 'varchar(24)', 'input', 'mink') INSERT tabTestValues VALUES ('sproc_2', 'O', 2, 'quantity', 'int', 'input', 2) INSERT tabTestValues VALUES ('sproc_2', 'O', 2, 'unit_price', 'money', 'input', 500.30) INSERT tabTestValues VALUES ('sproc_2', 'O', 2, 'total_cost', 'money', 'output', 1000.60) GO INSERT tabTestValues VALUES ('sproc_3', 'O', 3, 'last_name', 'varchar(15)', 'input', 'jones') INSERT tabTestValues VALUES ('sproc_3', 'O', 3, 'error_message', 'varchar(30)', 'output', 'Logic Error: 100 ') GO INSERT tabTestValues VALUES ('up_lookupPrice', 'O', 4, '@product_id', 'int', 'input', 7) INSERT tabTestValues VALUES ('up_lookupPrice', 'O', 4, '@product_price', 'money', 'output', 29.95)