2005-04-20 Helge Hess <helge.hess@opengroupware.org>
+ * MySQL4Channel.m: only warn if the character set could not be changed
+ to UTF-8 (v4.5.8)
+
* renamed MySQL4 adaptor to MySQL to avoid confusion (v4.5.7)
2005-04-19 Helge Hess <helge.hess@skyrix.com>
}
if (mysql_query(self->_connection, "SET CHARACTER SET utf8") != 0) {
- NSLog(@"ERROR(%s): could not put MySQL4 connection into UTF-8 mode: %s",
+ NSLog(@"WARNING(%s): could not put MySQL4 connection into UTF-8 mode: %s",
__PRETTY_FUNCTION__, mysql_error(self->_connection));
+#if 0
mysql_close(self->_connection);
self->_connection = NULL;
return NO;
+#endif
}
if (isDebuggingEnabled)
# Version file
-SUBMINOR_VERSION:=7
+SUBMINOR_VERSION:=8