mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/odbc/ejabberd_odbc.erl: UTF-8 support for MySQL5 (EJAB-318).
SVN Revision: 868
This commit is contained in:
parent
b1b348e184
commit
915d94b0dc
@ -1,3 +1,7 @@
|
||||
2007-08-12 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/odbc/ejabberd_odbc.erl: UTF-8 support for MySQL5 (EJAB-318).
|
||||
|
||||
2007-08-09 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* doc/guide.tex: Minor update (thanks to Sergei Golovan)
|
||||
|
@ -279,6 +279,7 @@ mysql_connect(Server, Port, DB, Username, Password) ->
|
||||
case mysql_conn:start(Server, Port, Username, Password, DB, NoLogFun) of
|
||||
{ok, Ref} ->
|
||||
erlang:monitor(process, Ref),
|
||||
mysql_conn:fetch(Ref, ["set names 'utf8';"], self()),
|
||||
{ok, #state{db_ref = Ref, db_type = mysql}};
|
||||
{error, Reason} ->
|
||||
?ERROR_MSG("MySQL connection failed: ~p~n", [Reason]),
|
||||
|
Loading…
Reference in New Issue
Block a user