From 2f0bc68bdeda30986cf7c9da0cbb8c76f2a1ec3a Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 20 Aug 2007 18:33:01 +0000 Subject: [PATCH] =?UTF-8?q?Mise=20en=20commentaire=20en=20attente=20de=20d?= =?UTF-8?q?=E9bugage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/lib/databases/mssql.lib.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/htdocs/lib/databases/mssql.lib.php b/htdocs/lib/databases/mssql.lib.php index aa8233ed8ad..eec76adc0b1 100644 --- a/htdocs/lib/databases/mssql.lib.php +++ b/htdocs/lib/databases/mssql.lib.php @@ -784,6 +784,7 @@ class DoliDb } function getDefaultCharacterSetDatabase(){ + /* $resql=$this->query('SHOW VARIABLES LIKE \'character_set_database\''); if (!$resql) { @@ -791,10 +792,13 @@ class DoliDb } $liste=$this->fetch_array($resql); return $liste['Value']; + */ + return ''; } function getListOfCharacterSet(){ - $resql=$this->query('SHOW CHARSET'); + /* + $resql=$this->query('SHOW CHARSET'); $liste = array(); if ($resql) { @@ -810,6 +814,8 @@ class DoliDb return null; } return $liste; + */ + return ''; // attente débuggage } function getDefaultCollationConnection(){ @@ -823,7 +829,8 @@ class DoliDb } function getListOfCollation(){ - $resql=$this->query('SHOW COLLATION'); + /* + $resql=$this->query('SHOW COLLATION'); $liste = array(); if ($resql) { @@ -838,6 +845,8 @@ class DoliDb return null; } return $liste; + */ + return ''; // attente débugage } }