this is hopeless, we just insert and hope for the best. thats all we can really do...

git-svn-id: file:///svn/phpbb/trunk@6587 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2006-11-15 20:48:38 +00:00
parent 93bd37451c
commit c904ba5691
2 changed files with 0 additions and 6 deletions

View file

@ -116,9 +116,6 @@ class dbal_mssql extends dbal
$this->sql_report('start', $query); $this->sql_report('start', $query);
} }
// For now, MSSQL has no real UTF-8 support
$query = utf8_decode($query);
$this->query_result = ($cache_ttl && method_exists($cache, 'sql_load')) ? $cache->sql_load($query) : false; $this->query_result = ($cache_ttl && method_exists($cache, 'sql_load')) ? $cache->sql_load($query) : false;
$this->sql_add_num_queries($this->query_result); $this->sql_add_num_queries($this->query_result);

View file

@ -114,9 +114,6 @@ class dbal_mssql_odbc extends dbal
$this->sql_report('start', $query); $this->sql_report('start', $query);
} }
// For now, MSSQL has no real UTF-8 support
$query = utf8_decode($query);
$this->last_query_text = $query; $this->last_query_text = $query;
$this->query_result = ($cache_ttl && method_exists($cache, 'sql_load')) ? $cache->sql_load($query) : false; $this->query_result = ($cache_ttl && method_exists($cache, 'sql_load')) ? $cache->sql_load($query) : false;
$this->sql_add_num_queries($this->query_result); $this->sql_add_num_queries($this->query_result);