sachin raj aryan has asked for the wisdom of the Perl Monks concerning the following question:
hello monks I am using dbix::dump data from database Which is in utf-8. (When saving as excel or csv) The column data which is in utf8 is displaying as ???????. Is there any way i can dump data in proper format.
my $sql1 = "select deptid,to_char(a.epfno) epfno,a.ename ename,desig, +decode(b.status,'P','उपस्थित +;','A','अवकाश','D','प्ë +2;तिनियुक्त +67;') status,b.rmk from Atnd_emp_mast a,Atnd_position b where repoid=1 and I +SACTIVE=0 and a.epfno=b.epfno and SUMM_HOD_FLAG=1 and ATTEN_DT=to_date('17-12-2020','DD-MM-YYYY') order by SUMM_SORTID"; + $sth =$dbh->prepare($sql1); $sth->execute(); $out = DBIx::Dump->new('format' => excel, # exce +l or csv 'output' => $f1, # file to save as 'sth' => $sth); $out->dump(); print "Report Generated with file name $f1 \n"; $f2 = join".",$f1,"xls"; system "copy $f1 $f2"; print "$f2 \n";
Out put is coming as
DEPTID EPFNO ENAME DESIG STATUS RMK 19 3346927 (...) +‰पस्थित 9 5222958 () + प्रतिनियु•्ति 10 2870266 ( ..) ‰ +स्थित 7 2874318 ( )  +37;पस्थित 9 2864045 ( + ) ‰पस्थित 15 4415744 ( ) + …व•ाश 17 2860538 ‰पस +थित
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Dump data from unicode database
by hippo (Archbishop) on Jun 30, 2021 at 13:14 UTC | |
Re: Dump data from unicode database
by bliako (Abbot) on Jun 30, 2021 at 11:18 UTC | |
by Tux (Canon) on Jun 30, 2021 at 12:42 UTC | |
by sachin raj aryan (Sexton) on Jun 30, 2021 at 12:29 UTC | |
by Tux (Canon) on Jun 30, 2021 at 12:52 UTC | |
by bliako (Abbot) on Jun 30, 2021 at 13:03 UTC | |
| |
Re: Dump data from unicode database
by sachin raj aryan (Sexton) on Jul 06, 2021 at 07:18 UTC | |
Re: Dump data from unicode database
by Anonymous Monk on Jun 30, 2021 at 14:27 UTC | |
Re: Dump data from unicode database
by Anonymous Monk on Jul 01, 2021 at 00:15 UTC |