php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30720 utf8 chars are not correctly inserted into db
Submitted: 2004-11-08 16:09 UTC Modified: 2004-11-10 17:39 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: bubu at cc dot lv Assigned:
Status: Not a bug Package: MySQLi related
PHP Version: 5CVS-2004-11-08 (dev) OS: Windows 2000 SP4
Private report: No CVE-ID: None
 [2004-11-08 16:09 UTC] bubu at cc dot lv
Description:
------------
In MySQL 4.1.7 version, any text in table with charset type UTF-8, are not correctly inserted by mysqli_fetch_row function. UTF-8 text is inserted into tables correctly. When looking in some mysql management tool (like MySQL Control Center or MySQL Query Browser or command line mysql) all text are displayed incorrectly. Executed in commandline INSERT command correctly inserts utf-8 characters.

Reproduce code:
---------------
<?php
  $link = mysqli_connect('localhost', 'root', 'root', 'test');
  mysqli_query($link, "CREATE TABLE utf8_test(a CHAR(100)) CHARACTER SET 'utf8'");
  $text = '&#9472;?&#9532;&#298;&#9532;?'; // any text non-ASCII text (in UTF-8)
  mysqli_query($link, "INSERT INTO utf8_test VALUES ('$text')");
  $res = mysqli_query($link, "SELECT * FROM utf8_test");
  list($new_text) = mysqli_fetch_row($res);
  mysqli_free_result($res);
  mysqli_close($link);
  echo ($text == $new_text ? "TRUE" : "FALSE");
?>

Expected result:
----------------
TRUE

Actual result:
--------------
FALSE

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-11-10 17:39 UTC] tony2001@php.net
It works fine for me both with mysql_* & mysqli* and MySQL 5.0.1, so I suppose this is MySQL bug (see http://bugs.mysql.com/bug.php?id=6527).
Marking this report bogus then.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 27 03:01:29 2024 UTC