in reply to Re: qq sql - umlaut isssue
in thread qq sql - umlaut isssue
UTF8 format is used already and this is not a problem. the problem is as described below
In the below SQL when i use the table name ($updatetable)as variable inside 'qq' for update it is displaying junk.
push @arraysql, qq{ UPDATE $updatetable a SET sometext = 'üseable term' where .... };
however when i use the table name direclty inside 'qq' the umlaut character is updated correctly.
push @arraysql, qq{ UPDATE user.updatetable a SET sometext = 'üseable term' where .... };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: qq sql - umlaut isssue
by tobyink (Canon) on Jul 30, 2012 at 10:04 UTC | |
|
Re^3: qq sql - umlaut isssue
by Anonymous Monk on Jul 30, 2012 at 09:12 UTC | |
|
Re^3: qq sql - umlaut isssue
by chacham (Prior) on Jul 30, 2012 at 10:55 UTC |