I'm storing Hebrew text in a MySQL database as utf-8. I recently saw a referece to MySQL utf-8 implementations that warned that if one stores utf-8 text, he must use the problematic MyISAM engine. So, must I use this engine? How do I check which engine I'm using? I've never set anything, and my database so far runs fine. Thanks in advance for any insights.
Note that I add this code after every database connection (I use php): mysql_query("SET character_set_client=utf8"); mysql_query("SET character_set_connection=utf8"); mysql_query("SET character_set_database=utf8"); mysql_query("SET character_set_results=utf8"); mysql_query("SET character_set_server=utf8"); Dotan Cohen http://what-is-what.com/what_is/computer.html http://lyricslist.com/lyrics/artist_albums/255/hill_faith.html -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]