2
0
forked from Wavyzz/dolibarr

Ajout paramtre newlink

Utilis dans les scripts qui forkent
This commit is contained in:
Rodolphe Quiedeville
2005-03-14 17:42:48 +00:00
parent 4ad5b41863
commit cefdd99ed1

View File

@@ -76,7 +76,7 @@ class DoliDb
\param name nom de la database
\return int 1 en cas de succ<63>s, 0 sinon
*/
function DoliDb($type = 'mysql', $host = '', $user = '', $pass = '', $name = '')
function DoliDb($type = 'mysql', $host = '', $user = '', $pass = '', $name = '', $newlink=0)
{
global $conf;
$this->transaction_opened=0;
@@ -90,7 +90,7 @@ class DoliDb
// Essai connexion serveur
$this->db = $this->connect($host, $user, $pass);
$this->db = $this->connect($host, $user, $pass, $newlink);
if ($this->db)
{
@@ -148,9 +148,9 @@ class DoliDb
\return resource handler d'acc<63>s <20> la base
*/
function connect($host, $login, $passwd)
function connect($host, $login, $passwd, $newlink=0)
{
$this->db = @mysql_connect($host, $login, $passwd);
$this->db = @mysql_connect($host, $login, $passwd, $newlink);
//print "Resultat fonction connect: ".$this->db;
return $this->db;
}