RE: Possible MySQLi extension BUG!

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



this is probably the reason that everything I do that got somthing to do with programming is always in english
I don't understand why you need all this problems when you can make all your "background" work (mysql db names,fields,variables) in english and spare the trouble of having to debug encoding problems
 
best regards 
ziv gabel

________________________________

מאת: Bastien Koert [mailto:bastien_k@xxxxxxxxxxx]
נשלח: ו 09/09/2005 20:05
אל: renich@xxxxxxxxxxxxxxxx; php-db@xxxxxxxxxxxxx
נושא: RE:  Possible MySQLi extension BUG!



Questions:

1. what is the current database collation and character set? check with
whatever GUI tool you use to admin the db

2. Are they the same? ie UTF-8

3. the query of course would be correct since it hasn't touched mysql yet.
Its a straight representation from PHP.

Notes:
1. Spaces in DB table/field names are a really bad idea and should be
avoided if possible. Replace the spaces with underscores if you want the
appearance of the space


Bastien


>From: Renich Bon Ciric <renich@xxxxxxxxxxxxxxxx>
>To: php-db@xxxxxxxxxxxxx
>Subject:  Possible MySQLi extension BUG!
>Date: Fri, 09 Sep 2005 12:50:31 -0500
>
>Ok,
>
>Firs of all, I wanna say I have spent a whole week looking for answers
>elsewhere. The reason of this message is to look for a practical solution.
>
>My Systems:
>Server:
>Fedora Core 4 (up2dated)
>PHP5.04 (cli)
>MySQL 14.7 Distrib 4.1.12
>using mysqli extension
>Apache/2.0.54 (Fedora)
>
>Workstation:
>Windows XP SP2
>Zend Studio Enterprise 4.02
>
>Well, let me explain the problem:
>
>I'm developing some aplications that require the use of foreign characters.
>The language is spanish, so you use accends or tilde on some works
>(example, comisi?n, ni?o, etc).
>
>I have a simple query that uses tables (named with this foreign
>characters). Example:
>
>directorio
>       - Empresa
>       - Direcci?n
>       - Asistente de Direcci?n
>
>A query to this database should be as follows:
>
>SELECT *
>FROM `Asistente de Direcci?n`;
>
>This returns an error like:
>
>Table 'directorio.Asistente de Direcci?³n' doesn't exist.
>
>I have changed EVERYTHING to utf-8 charset:
>
>httpd.conf - AddDefaultCharset = UTF-8
>php.ini - default_charset = "UTF-8"
>         mbstring.internal_encodign = UTF-8
>         mbstring.http_input = UTF-8
>         mbstring.http_output = UTF-8
>         mbstring.detect_order = UTF-8,SJIS,ASCII
>my.cnf - [mysqld]
>        datadir=/var/lib/mysql
>        socket=/var/lib/mysql/mysql.sock
>        old_passwords=1
>        default-character-set=utf8
>        [mysql.server]
>        user=mysql
>        basedir=/var/lib
>
>        [mysqld_safe]
>        err-log=/var/log/mysqld.log
>        pid-file=/var/run/mysqld/mysqld.pid
>
>        [mysql]
>        default-character-set=utf8
>
>This config sets ALL my servers to utf-8
>
>- Apache works perfectly fine in UTF-8, no problems
>- PHP encodes everything to utf-8... at least thats what i think
>- All my MySQL char variables are set to UTF-8, except
>"default-character-result" its set to NULL
>
>As far as I know, there is no other config made to be done.
>
>My theory is this:
>
>Consider:
>
><?php
>
>$link = mysqli_connect('mysql.fedora', 'root', 'idontrecall',
>'directorio');
>
>if ( isset($_POST['submit']) && $_POST['submit'] == 'Search' )
>{
>$query = "SELECT *
>                 FROM `Empresa`,
>                 `Presidente`,
>                 `Asistente de Presidencia`,
>                 `Director`,
>                 `Asistente de Direcci?n`, `
>                 Centro de Distribuci?n 01`,
>                 `Centro de Distribuci?n 02`,
>                 `Centro de Distribuci?n 03`,
>                 `Centro de Distribuci?n 04`,
>                 `Centro de Distribuci?n 05`,
>                 `Centro de Distribuci?n 06`,
>                 `Centro de Distribuci?n 07`,
>                 `Centro de Distribuci?n 08`,
>                 `Centro de Distribuci?n 09`,
>                 `Centro de Distribuci?n 10`
>
>WHERE Empresa.Emp_Gro LIKE '%$_POST[input]%'
>AND Empresa.ID =  Presidente.ID
>AND Empresa.ID = `Asistente de Presidencia`.ID
>AND Empresa.ID =  Director.ID
>AND Empresa.ID = `Asistente de Direcci?n`.ID
>AND Empresa.ID = `Centro de Distribuci?n 01`.ID
>AND Empresa.ID = `Centro de Distribuci?n 02`.ID
>AND Empresa.ID = `Centro de Distribuci?n 03`.ID
>AND Empresa.ID = `Centro de Distribuci?n 04`.ID
>AND Empresa.ID = `Centro de Distribuci?n 05`.ID
>AND Empresa.ID = `Centro de Distribuci?n 06`.ID
>AND Empresa.ID = `Centro de Distribuci?n 07`.ID
>AND Empresa.ID = `Centro de Distribuci?n 08`.ID
>AND Empresa.ID = `Centro de Distribuci?n 09`.ID
>AND Empresa.ID = `Centro de Distribuci?n 10`.ID";
>
>// Make the query
>$result = mysqli_query($link,$query) or die(mysqli_error($link));
>
>// Fetch the results
>while ($data = mysqli_fetch_assoc($result))
>{
>       // Print the data obtained
>       print_my_data($data);
>}
>
>}
>// Close conection
>mysqli_close($link);
>
>?>
>
>if you add a "print $query;" just before it makes the query; and as long as
>you have your webpage with the charset meta-tag set to "utf-8" and
>everything utf-8 encoded... you'll get the right query...
>
>this is
>
>SELECT * FROM `Empresa`, `Presidente`, `Asistente de Presidencia`,
>`Director`, `Asistente de Direcci?n`, ` Centro de Distribuci?n 01`, `Centro
>de Distribuci?n 02`, `Centro de Distribuci?n 03`, `Centro de Distribuci?n
>04`, `Centro de Distribuci?n 05`, `Centro de Distribuci?n 06`, `Centro de
>Distribuci?n 07`, `Centro de Distribuci?n 08`, `Centro de Distribuci?n 09`,
>`Centro de Distribuci?n 10` WHERE Empresa.Emp_Gro LIKE '%try this%' AND
>Empresa.ID = Presidente.ID AND Empresa.ID = `Asistente de Presidencia`.ID
>AND Empresa.ID = Director.ID AND Empresa.ID = `Asistente de Direcci?n`.ID
>AND Empresa.ID = `Centro de Distribuci?n 01`.ID AND Empresa.ID = `Centro de
>Distribuci?n 02`.ID AND Empresa.ID = `Centro de Distribuci?n 03`.ID AND
>Empresa.ID = `Centro de Distribuci?n 04`.ID AND Empresa.ID = `Centro de
>Distribuci?n 05`.ID AND Empresa.ID = `Centro de Distribuci?n 06`.ID AND
>Empresa.ID = `Centro de Distribuci?n 07`.ID AND Empresa.ID = `Centro de
>Distribuci?n 08`.ID AND Empresa.ID = `Centro de Distribuci?n 09`.ID AND
>Empresa.ID = `Centro de Distribuci?n 10`.ID
>
>following the error
>Table 'directorio.Asistente de Direcci?³n' doesn't exist
>
>As you can see, this is not logical. You had your query printed just above
>and it printed out fine!... Sorry, if i got a little carried away...
>
>This is why i think that the mysqli extension haves a bug. I have my
>connection, server, etc... variables set to UTF-8 in MySQL. The one that is
>converting the code while using the "mysqli_fetch_assoc()" function is
>php...
>
>If anybody knows how to correct this... or how to make the example work...
>please tell me. I have worked on this too much.
>
>I know that if I change the tablenames, it will work. In fact, a query like
>
>SELECT *
>FROM `Empresa`;
>
>Works perfectly fine.
>
><dramatically> Help me and all the foreign php and mysql users use our own
>characters! </dramatically>
>
>Things I have checked:
>- Searched my.cnf, httpd.conf and php.ini for any "ISO-8859-1","latin1"
>strings.
>- Checked the db file names (/var/lib/mysql/)
>- Checked if the script files are UTF-8 encoded
>- Checked if the browser is accepting the UTF-8 charset
>
>--
>PHP Database Mailing List (http://www.php.net/)
>To unsubscribe, visit: http://www.php.net/unsub.php
>

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



************************************************************************************
This footnote confirms that this email message has been scanned by
PineApp Mail-SeCure for the presence of malicious code, vandals & computer viruses.
************************************************************************************






************************************************************************************
This footnote confirms that this email message has been scanned by
PineApp Mail-SeCure for the presence of malicious code, vandals & computer viruses.
************************************************************************************

[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux