Skip to content

Commit

Permalink
Issue #27
Browse files Browse the repository at this point in the history
  • Loading branch information
mbleron committed Aug 23, 2022
1 parent e181cec commit fd9e5cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,10 @@ end;

## CHANGELOG

### 2.5.1 (2022-08-23)

* Fix : issue #27

### 2.5 (2022-02-27)

* Enhancement : issue #10
Expand Down
2 changes: 1 addition & 1 deletion plsql/ExcelGen.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -2201,7 +2201,7 @@ create or replace package body ExcelGen is
stream_write(stream, '<cols>');
for i in 1 .. sd.columnMap.count loop
if sd.columnMap(i).width is not null then
stream_write(stream, '<col min="'||to_char(i)||'" max="'||to_char(i)||'" width="'||to_char(getColumnWidth(sd.columnMap(i).width),'TM9')||'" customWidth="1"/>');
stream_write(stream, '<col min="'||to_char(i)||'" max="'||to_char(i)||'" width="'||to_char(getColumnWidth(sd.columnMap(i).width),'TM9',NLS_PARAM_STRING)||'" customWidth="1"/>');
end if;
end loop;
stream_write(stream, '</cols>');
Expand Down
1 change: 1 addition & 0 deletions plsql/ExcelGen.pks
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ create or replace package ExcelGen is
Lee Lindley 2022-02-22 Added BINARY_DOUBLE data type
Added debug for queryString/cursor exceptions and counts
Marc Bleron 2022-02-27 Added custom column style
Marc Bleron 2022-08-23 Fixed number format for column width (xlsx)
====================================================================================== */

-- file types
Expand Down

0 comments on commit fd9e5cd

Please sign in to comment.