MySQL数据库存储过程常出现以下这样的问题:
1、存储信息为乱码,尤其通过执行sql脚本添加数据最为常见。
2、使用where子句是,对中文字符串进行比较,这个问题也是十分常见。
针对存储信息为乱码的问题,一定要注意执行脚本的终端,系统默认的字符编码是你所要求的,这个问题归根到底是mysql字符集的问题。MySQL的字符集支持(Character Set Support)有两个方面:字符集(Characterset)和排序方式(Collation)。
对于字符集的支持细化到四个层次: 服务器(server),数据库(database),数据表(table)和连接(connection)。
MySQL对于字符集的指定可以细化到一个数据库,一张表,一列,应该用什么字符集。
与字符集相关的命令:
查看默认字符集(默认情况下,mysql的字符集是latin1(ISO_8859_1)
- mysql> SHOW VARIABLES LIKE 'character%';
- mysql> SHOW VARIABLES LIKE 'collation_%';
使用命令修改字符集:
- <pre name="code" class="html">
- mysql> SET character_set_client = utf8 ;
- mysql> SET character_set_connection = utf8 ;
- mysql> SET character_set_database = utf8 ;
- mysql> SET character_set_results = utf8 ;
- mysql> SET character_set_server = utf8 ;
- mysql> SET collation_connection = utf8 ;
- mysql> SET collation_database = utf8 ;
- mysql> SET collation_server = utf8 ;
出现问题1的原因是:设置了表的默认字符集为utf8并且通过UTF-8编码发送查询,但这个connection连接层的编码仍然不正确。解决方法是在发送查询前执行一下下面这句:
- SET NAMES 'utf8';
它相当于下面的三句指令:
- <pre name="code" class="html">SET character_set_client = utf8;
- SET character_set_results = utf8;
- SET character_set_connection = utf8;
问题2解决方法:
对需要比较的两边变量或常量使用转码(COLLATE utf8_unicode_ci),如:
- declare cur_preferences cursor for select id from preferences where @name like concat("%",rTitle COLLATE utf8_unicode_ci ) ;
如果上面的语句优化不成功,执行下面的语句:
- declare cur_preferences cursor for select id from preferences where @name COLLATE utf8_unicode_ci like concat("%",rTitle COLLATE utf8_unicode_ci ) ;
这样就可以解决这个问题。
关于MySQL数据库存储过程常见的问题就介绍到这里,如果您想了解更多关于MySQL数据库的知识,不妨看一下这里的文章:http://database.51cto.com/mysql/,希望您能有所收获!
【编辑推荐】