mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 18:18:18 +01:00
Travail sur les commandes, les stocks, et diverses mises aux normes
This commit is contained in:
@@ -104,10 +104,25 @@ class DoliDb {
|
||||
}
|
||||
|
||||
Function close()
|
||||
{
|
||||
$this->ret = mysql_close($this->db);
|
||||
return $this->ret;
|
||||
}
|
||||
{
|
||||
$this->ret = mysql_close($this->db);
|
||||
return $this->ret;
|
||||
}
|
||||
|
||||
Function begin()
|
||||
{
|
||||
return $this->query("BEGIN");
|
||||
}
|
||||
|
||||
Function commit()
|
||||
{
|
||||
return $this->query("COMMIT");
|
||||
}
|
||||
|
||||
Function rollback()
|
||||
{
|
||||
return $this->query("ROLLBACK");
|
||||
}
|
||||
|
||||
Function query($query, $limit="", $offset="")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user