speciesbeing Posted July 11, 2008 Share Posted July 11, 2008 Hello! I want to ask you one quick question. What is the database equivalent of ISO-8859-5 ? Here are some examples with their equivalents: // Chinese-traditional. 'big5' => 'big5', // Chinese-simplified. 'gbk' => 'gbk', // West European. 'ISO-8859-1' => 'latin1', // Romanian. 'ISO-8859-2' => 'latin2', // Turkish. 'ISO-8859-9' => 'latin5', // Thai. 'tis-620' => 'tis620', // Persian, Chinese, etc. 'UTF-8' => 'utf8', // Russian. 'windows-1251' => 'cp1251', // Greek. 'windows-1253' => 'utf8', // Hebrew. 'windows-1255' => 'utf8', // Arabic. 'windows-1256' => 'cp1256', Thank you. Link to comment https://forums.phpfreaks.com/topic/114237-database-equivalent/ Share on other sites More sharing options...
vikramjeet.singla Posted July 11, 2008 Share Posted July 11, 2008 Please refer to following link: http://mysql2.mirrors-r-us.net/doc/refman/5.1/en/charset-cyrillic-sets.html try for "cp1251".... also refer to ... http://www.firebirdsql.org/index.php?op=doc&id=fb_1_5_charsets 35 ISO8859_5 1 ISO8859_5 Cyrillic (Russian) ISO-8859-5, ISO88595 Link to comment https://forums.phpfreaks.com/topic/114237-database-equivalent/#findComment-587427 Share on other sites More sharing options...
speciesbeing Posted July 11, 2008 Author Share Posted July 11, 2008 So the database equivalent of ISO-8859-5 is ISO88595 ? In my case it will be: // Macedonian. 'ISO-8859-5' => 'ISO88595', right? Link to comment https://forums.phpfreaks.com/topic/114237-database-equivalent/#findComment-587433 Share on other sites More sharing options...
vikramjeet.singla Posted July 11, 2008 Share Posted July 11, 2008 no it will be 'windows-1251' => 'cp1251' Link to comment https://forums.phpfreaks.com/topic/114237-database-equivalent/#findComment-587439 Share on other sites More sharing options...
speciesbeing Posted July 11, 2008 Author Share Posted July 11, 2008 why? My encoding is ISO-8859-5, so I need the database equivalent, so later I can convert the symbols into UTF-8. Link to comment https://forums.phpfreaks.com/topic/114237-database-equivalent/#findComment-587440 Share on other sites More sharing options...
speciesbeing Posted July 11, 2008 Author Share Posted July 11, 2008 any help, please? Link to comment https://forums.phpfreaks.com/topic/114237-database-equivalent/#findComment-587493 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.