Mise en commentaire en attente de dbugage

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(){
/*
$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
}
}