Merge pull request #352 from peace-maker/charset_thread
Lock database before setting character set
This commit is contained in:
commit
a410aefd6d
@ -297,5 +297,9 @@ IDBDriver *MyDatabase::GetDriver()
|
|||||||
|
|
||||||
bool MyDatabase::SetCharacterSet(const char *characterset)
|
bool MyDatabase::SetCharacterSet(const char *characterset)
|
||||||
{
|
{
|
||||||
return mysql_set_character_set(m_mysql, characterset) == 0 ? true : false;
|
bool res;
|
||||||
|
LockForFullAtomicOperation();
|
||||||
|
res = mysql_set_character_set(m_mysql, characterset) == 0 ? true : false;
|
||||||
|
UnlockFromFullAtomicOperation();
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user