ajout d'un installeur en ligne
[mtweb] / mw / app / data / mw_sgbd.php
index faf88e2..c3ca66e 100644 (file)
       return $this->sgbd_impl->extention_ok($this->env);
     }
 
+    function authentication_required(){
+      return $this->sgbd_impl->authentication_required();
+    }
+
     function connect($host, $base, $user, $password){
       return $this->sgbd_impl->connect($host, $base, $user, $password);
     }
       return $this->sgbd_impl->fetch_data($dh);
     }
 
-    function add_data($data_path, $data){
+    function add_data($data_path, $data, $index = null){
       if(!method_exists($this->sgbd_impl, "add_data")) return false;
-      return $this->sgbd_impl->add_data($data_path, $data);
+      return $this->sgbd_impl->add_data($data_path, $data, $index);
     }
 
     function last_index($dh){