Mise en commentaire en attente de débugage

This commit is contained in:
Regis Houssin 2007-08-20 18:33:01 +00:00
parent b3d05f90be
commit 2f0bc68bde

View File

@ -784,6 +784,7 @@ class DoliDb
} }
function getDefaultCharacterSetDatabase(){ function getDefaultCharacterSetDatabase(){
/*
$resql=$this->query('SHOW VARIABLES LIKE \'character_set_database\''); $resql=$this->query('SHOW VARIABLES LIKE \'character_set_database\'');
if (!$resql) if (!$resql)
{ {
@ -791,10 +792,13 @@ class DoliDb
} }
$liste=$this->fetch_array($resql); $liste=$this->fetch_array($resql);
return $liste['Value']; return $liste['Value'];
*/
return '';
} }
function getListOfCharacterSet(){ function getListOfCharacterSet(){
$resql=$this->query('SHOW CHARSET'); /*
$resql=$this->query('SHOW CHARSET');
$liste = array(); $liste = array();
if ($resql) if ($resql)
{ {
@ -810,6 +814,8 @@ class DoliDb
return null; return null;
} }
return $liste; return $liste;
*/
return ''; // attente débuggage
} }
function getDefaultCollationConnection(){ function getDefaultCollationConnection(){
@ -823,7 +829,8 @@ class DoliDb
} }
function getListOfCollation(){ function getListOfCollation(){
$resql=$this->query('SHOW COLLATION'); /*
$resql=$this->query('SHOW COLLATION');
$liste = array(); $liste = array();
if ($resql) if ($resql)
{ {
@ -838,6 +845,8 @@ class DoliDb
return null; return null;
} }
return $liste; return $liste;
*/
return ''; // attente débugage
} }
} }