the export csv_routine was incorrectly referring to Y instead of Yes, on the question of whether column headings should be included in the csv file

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2937 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
PriestJ
2007-12-04 14:38:29 +00:00
parent b68f2ebcb1
commit e0a5a6bfc8

View File

@@ -39,7 +39,6 @@ BEGIN
FROM user_tab_columns FROM user_tab_columns
WHERE table_name = upper(p_table) WHERE table_name = upper(p_table)
ORDER BY column_id) LOOP ORDER BY column_id) LOOP
dbms_output.put_line('me is in loop');
-- --
-- AG's clever delimiting ensures that the rows from the table are output -- AG's clever delimiting ensures that the rows from the table are output
-- in a nice CSV format -- in a nice CSV format
@@ -87,7 +86,7 @@ BEGIN
-- --
-- If the user has requested that the tables column names be exported -- If the user has requested that the tables column names be exported
-- then display them -- then display them
if upper(p_column_headers) = 'Y' then if upper(p_column_headers) = 'YES' then
--print column headers --print column headers
htp.p(l_headers); htp.p(l_headers);
end if; end if;