Added an FAQ entry about lower_case_table_names on Windows machines.

This commit is contained in:
Alexander M. Turek
2002-09-10 19:16:40 +00:00
parent 0cfd7246e8
commit 9053a4a90d
2 changed files with 23 additions and 4 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-09-10 Alexander M. Turek <rabus@users.sourceforge.net>
* Documentation.html: Added an FAQ entry about lower_case_table_names on
Windows machines.
2002-09-09 Alexander M. Turek <rabus@users.sourceforge.net>
* lang/hindi-utf-8.inc.php3: Updates, thanks again to
Girish Nair (girish_nair).

View File

@@ -1764,6 +1764,21 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
parameter is not set to &quot;on&quot;.
</p>
<p>
<b>[1.23] I'm running MySQL on a Win32 machine. Each time I create a new
table the table and field names are changed to lowercase!</b>
<br />
This happens because the MySQL directive <tt>lower_case_table_names</tt>
defaults to 1 (<tt>ON</tt>) in the Win32 version of MySQL. You can change
this behavior by simply changing the directive to 0 (<tt>OFF</tt>):<br />
Just edit you <tt>my.ini</tt> file that should be located in your Windows
directory and add the following line:<br />
<tt>lower-case-table-names=0</tt><br />
Next, save the file and restart the MySQL service. You can always check the
value of this directive using the query<br />
<tt>SHOW VARIABLES LIKE 'lower_case_table_names';</tt>
</p>
<a name="faqconfig"></a>
<h3>[2. Configuration]</h3>