Difference between revisions of "Change Database Collation"
From AWBS Wiki
(→Converting the Database) |
(→Converting the Database) |
||
Line 3: | Line 3: | ||
== Converting the Database == | == Converting the Database == | ||
+ | Copy and paste the example below into a new text file. Give this file a name of convertdb.php (or anything that you will remember, but with the .php extension) | ||
+ | |||
+ | Example: | ||
<code> | <code> | ||
<?php | <?php | ||
Line 9: | Line 12: | ||
include($workdir."/includes/sessions.php"); | include($workdir."/includes/sessions.php"); | ||
include_once($workdir."/config.php"); | include_once($workdir."/config.php"); | ||
− | |||
$tables = mysql_list_tables($dbdatabase); | $tables = mysql_list_tables($dbdatabase); | ||
− | |||
while (list($table) = mysql_fetch_row($tables)) { | while (list($table) = mysql_fetch_row($tables)) { | ||
sqlwritesingle("ALTER TABLE $table CONVERT TO CHARACTER SET latin5 COLLATE latin5_turkish_ci;"); | sqlwritesingle("ALTER TABLE $table CONVERT TO CHARACTER SET latin5 COLLATE latin5_turkish_ci;"); |
Revision as of 22:47, February 9, 2009
Some languages require the Database collation to be changed in order to display characters correctly. You will find instructions here on how to change your database collation and configure AWBS to work correctly with this change.
Converting the Database
Copy and paste the example below into a new text file. Give this file a name of convertdb.php (or anything that you will remember, but with the .php extension)
Example:
<?php $DIR=(dirname(__FILE__)); require($DIR."/../includes/dbconfig.php"); include($workdir."/includes/sessions.php"); include_once($workdir."/config.php"); $tables = mysql_list_tables($dbdatabase); while (list($table) = mysql_fetch_row($tables)) { sqlwritesingle("ALTER TABLE $table CONVERT TO CHARACTER SET latin5 COLLATE latin5_turkish_ci;"); echo "$table - DONE
";flush();ob_flush(); } ?>