summaryrefslogtreecommitdiff
path: root/mysql_convert_unicode.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-11-10 06:29:19 +0100
committerAndrew Dolgov <[email protected]>2008-11-10 06:29:19 +0100
commitf29ba1484f4a230651a40f4b3e26444d9748453f (patch)
tree0b8d66229a08600986654a060ad2128b6d07f130 /mysql_convert_unicode.php
parentd2bf48f90ad1997406708811c45163567b9c3ff0 (diff)
code cleanup, test for db_escape() crazyness in DB sanity check
Diffstat (limited to 'mysql_convert_unicode.php')
-rw-r--r--mysql_convert_unicode.php12
1 files changed, 2 insertions, 10 deletions
diff --git a/mysql_convert_unicode.php b/mysql_convert_unicode.php
index 6fe72994c..6d43c234c 100644
--- a/mysql_convert_unicode.php
+++ b/mysql_convert_unicode.php
@@ -9,16 +9,8 @@
require_once "db.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
-
- if (DB_TYPE == "pgsql") {
- pg_query($link, "set client_encoding = 'utf-8'");
- pg_set_client_encoding("UNICODE");
- } else {
- if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
- db_query($link, "SET NAMES " . MYSQL_CHARSET);
-// db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
- }
- }
+
+ init_connection($link);
login_sequence($link);