Closed GoogleCodeExporter closed 8 years ago
Original comment by thehunge...@gmail.com
on 23 Jul 2012 at 7:16
I've gotten that error as well, with a non-multibyte clob. I fixed it with the
following kludge, in my case the CSV had lines that were longer than 4000
characters long (and I didn't care if they were truncated):
function csv_to_array (p_csv_line in varchar2,
p_separator in varchar2 := g_default_separator) return t_str_array
as
...
procedure save_column is
begin
...
l_returnvalue(l_idx) := SUBSTR(l_current_column,1,4000);
...
Original comment by jeffrey....@jk64.com
on 16 Aug 2012 at 12:12
Vadimon's fix added to the latest version of the package.
Original comment by thehunge...@gmail.com
on 17 Feb 2013 at 9:20
Original issue reported on code.google.com by
Vadi...@mail.ru
on 15 Jun 2012 at 11:02