MySQL Forums
Forum List  »  Russian

StoredProcedures и кодировки
Posted by: Serg Akudovich
Date: December 10, 2006 06:33AM

MySQL - 5.1.11-beta-log
Столкнулся с проблемкой:
База и контент в utf8
Соответственно SET NAMES 'utf8';
Все прекрасно и работает.
Но в простых запросах!!!
на ура: UPDATE `content_tree` SET `description`='привет';
создаем SP
CREATE PROCEDURE `setContent`(vValue VARCHAR(255))
BEGIN
UPDATE `content_tree` SET `description` = vValue;
END

вызываем: call setContent('привет');

И все погано, вместо привет у нас вопросы...
Куда рыть?

Options: ReplyQuote


Subject
Views
Written By
Posted
StoredProcedures и кодировки
6554
December 10, 2006 06:33AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.