Help for this page

Select Code to Download


  1. or download this
    # $ iconv -f latin1 -t UTF-8 in.sql > in_utf8.sql
    # $ mysql < in_utf8.sql
    
  2. or download this
    while (my ($col1, $col2... $coln) = $sth->fetch row_array) {
        ## I believe this is where I should be converting the $col1..n 
        ## values to utf8, but don't know how.
        insert into Pg
    }