J
|
Jepsen author 5/5/2007 |
Additional AJAX issue |
![]() |
Alexey 5/8/2007 |
Morten, |
J
|
Jepsen author 5/8/2007 |
Alexey |
J
|
jacekq 5/8/2007 |
Hi Morten, Additional AJAX issue AJAX appers to be unable to handle scandinavian characters (æÆøØåÅ). Any database in scandinavian language would be unable to benefit from AJAX functionality if it cannot handle the scandinavian characters.
|
X
|
xliner 5/8/2007 |
Alexey The scandinavian characters lies in the extended ascii area. Gere are the decimal ascii values: Normal: 145 Capital: 146 ( æ / Æ ) Normal: 148 Capital: 153 ( ø / Ø ) Normal: 134 Capital: 143 ( å / Å ) Try making an entry in a database using one or more of these characters and then let AJAX find the charactor. It cannot. Every third word in my language have one of these letters. So AJAX do not add any value to a scandinavian database unless it can search the scandinavian characters. :-) Morten
|
![]() |
admin 5/9/2007 |
Thanks, we are looking into this. |
J
|
jacekq 5/9/2007 |
I've forgotten to mention that I must modify 'dbconnection.my.php' everytime after installation of a new version of PHP Runner. Modification looks like: if (!$conn || !mysql_select_db($sys_dbname,$conn)) { trigger_error(mysql_error(), E_USER_ERROR); } else db_query('SET names latin2',$conn);
|