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:
@@ -39,7 +39,6 @@ BEGIN
|
||||
FROM user_tab_columns
|
||||
WHERE table_name = upper(p_table)
|
||||
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
|
||||
-- in a nice CSV format
|
||||
@@ -87,7 +86,7 @@ BEGIN
|
||||
--
|
||||
-- If the user has requested that the tables column names be exported
|
||||
-- then display them
|
||||
if upper(p_column_headers) = 'Y' then
|
||||
if upper(p_column_headers) = 'YES' then
|
||||
--print column headers
|
||||
htp.p(l_headers);
|
||||
end if;
|
||||
|
||||
Reference in New Issue
Block a user