diff options
author | David M <davidmj@users.sourceforge.net> | 2006-09-19 04:50:02 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-09-19 04:50:02 +0000 |
commit | b7dab9cdab72b6463121856d26dcfea0eb0df376 (patch) | |
tree | 661d707f54a7c4b4dfb37c3a01de548446d52dfe /phpBB/includes/db/mssql.php | |
parent | ea065f3e67ee0c0cb28c88569042461dd8cf2c27 (diff) | |
download | forums-b7dab9cdab72b6463121856d26dcfea0eb0df376.tar forums-b7dab9cdab72b6463121856d26dcfea0eb0df376.tar.gz forums-b7dab9cdab72b6463121856d26dcfea0eb0df376.tar.bz2 forums-b7dab9cdab72b6463121856d26dcfea0eb0df376.tar.xz forums-b7dab9cdab72b6463121856d26dcfea0eb0df376.zip |
- Oracle now works with large amounts of text
- MSSQL now works :P (sans UTF-8 support)
- The current schema files work well enough to install, etc. but must be tightened. Will get to it when I get some time...
git-svn-id: file:///svn/phpbb/trunk@6381 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/mssql.php')
-rw-r--r-- | phpBB/includes/db/mssql.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/includes/db/mssql.php b/phpBB/includes/db/mssql.php index 11548998ba..52f442f4fa 100644 --- a/phpBB/includes/db/mssql.php +++ b/phpBB/includes/db/mssql.php @@ -122,6 +122,9 @@ class dbal_mssql extends dbal $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->sql_add_num_queries($this->query_result); |