ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: Alexander Dymo <cloudtemple@mksat.net>
To: community@altlinux.ru
Subject: Re: [Comm] QT3, MySQL и русские буквы
Date: Sun, 30 Mar 2003 00:35:13 +0200
Message-ID: <200303300035.13901.cloudtemple@mksat.net> (raw)
In-Reply-To: <3E85E16F.4040906@rmts.donpac.ru>

On Saturday 29 March 2003 20:09, Прокопьев Евгений wrote:
> Здравствуйте!
>
> Вот прочитал раздел Creating Database Applications в QT Assistant и
> решил попробовать.
>
> Создал табличку author следующего содержания:
>
> +----+----------+-----------+
>
> | id | forename | surename  |
>
> +----+----------+-----------+
>
> |  1 | Ivan     | Petrov II |
> | 16 | ????     | ???????   |
> | 12 | Petr     | Filippov  |
> | 17 | Федя     | Хрюков    |
>
> +----+----------+-----------+
>
> Приложение (просто отображающую таблицу) нарисовал в QT Designer, кода в
> нем кроме main практически нет. Все сделал по умолчанию.
>
> Последняя строка (добавленная через утилиту mysql) в QT-приложении
> выглядит так:
>
> +----+----------+-----------+
>
> | 17 | ?A*A"N~     | e`O`A`E"I"?    |
>
> +----+----------+-----------+
>
> А строка 16 была добавлена с помощью приложения, но сразу после нажатия
> Enter превратилась в вопросительные знаки.
>
> Собственно вопрос: как бороться с русскими буквами в QT-приложениях,
> работающих с MySQL? Куда хотя бы копать? Если QT ожидает увидеть в MySQL
> юникод, то как его туда ввести?

Надо унаследоваться от QDataTable, переопределив 
paintField( QPainter * p, const QSqlField * field, 
const QRect & cr, bool selected), 
где следует значение field->value с помощью QTextCodec
перекодировать из кодировки MySql (обычно koi8-r, cp1251, utf-8)
в Unicode. Это решит проблему отображения.
С вводом можно поступить аналогичным образом, по сигналам
void beforeInsert ( QSqlRecord * buf )
void beforeUpdate ( QSqlRecord * buf )
в собственном слоте произвести обратный процесс перекодировки
значений каждого поля с типом QVariant::String и QVariant::CString
из Unicode в то, что хочет видеть MySql.

После этого создать QtDesigner plugin для переопределенной
таблицы и радоваться жизни ;)

Если в базе cp866, то нужно писать еще QTextCodecPlugin
для этой кодировки.

С PostgreSQL, кстати, процедура гораздо проще. Если клиент
скомпилирован с поддержкой Unicode и установлено
SET CLIENT_ENCODING=UNICODE,
а также на сервере база создана с опцией -E UNICODE,
то Qt эту ситуацию понимает и без всяких телодвижений позволяет
вводить хоть китайские иероглифы:).

C Oracle все примерно так же, как и с PostgreSQL. Другие СУБД не
пробовал. 

-- 
Alexander Dymo
Ukrainian State Maritime Technical University, IT Department

      reply	other threads:[~2003-03-29 22:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-03-29 18:09 Прокопьев Евгений
2003-03-29 22:35 ` Alexander Dymo [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200303300035.13901.cloudtemple@mksat.net \
    --to=cloudtemple@mksat.net \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git