+ return $this->_armarArraySistemas();
+ }
+ // -X2C
+
+ // +X2C Operation 287
+ /**
+ * Devuelve el identificador maximo de un sistema que hay en base
+ *
+ * @return int
+ *
+ * @access public
+ */
+ function getMaxIdSistema() // ~X2C
+ {
+ $sql = include 'Samurai/consultas.php';
+ $dbh = $this->_db->prepare($sql['obtener_max_id_sistemas']);
+ $res = $this->_db->execute($dbh);
+ $re = $res->fetchrow(DB_FETCHMODE_ASSOC);
+ $res->free();
+ return $re['id_sistema'];