Diferencia entre revisiones de «Documentación XMLDB»

De MoodleDocs
(added page)
 
(tidy up)
 
(No se muestran 5 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
{{chafa}}
__NOTOC__
__NOTOC__


XMLDB la capa de abstracción de la BasedeDatos de Moodle -- es la biblioteca (''library'') de código que le permite a Moodle interactuar con y acceder a la BasedeDatos.
XMLDB la capa de abstracción de la BasedeDatos de Moodle -- es la biblioteca (''library'') de código que le permite a Moodle interactuar con y acceder a la BasedeDatos.


En ésta página encontrará enlaces hacia toda la documentación relacionada con XMLDB. Currently you will find documents both belonging to the [[:Category:XMLDB|XMLDB]] category and to the general [[:Category:Installation|Installation]] category, plus some interesting external links.
En ésta página encontrará enlaces hacia toda la documentación relacionada con XMLDB. Currently you will find documents both belonging to the [[:Category:XMLDB|XMLDB]] category and to the general [[:Category:Instalación|Instalación]] category, plus some interesting external links.


=== Introducción ===
=== Introducción ===


* [[XMLDB introduction|Introduction]]: Where the general idea of XMLDB is explained.
* [https://docs.moodle.org/dev/XMLDB_introduction Introducción]: En donde se explica la idea general acerca de XMLDB.
* [[XMLDB roadmap|Roadmap]]: An overall view of the process of implementing the XMLDB subsystem, with details for each point of the process.
* [https://docs.moodle.org/dev/XMLDB_roadmap Mapa del camino (Roadmap)]: Una vista general del proceso de implementar el subsistema XMLDB subsystem, con detalles para cada punto del proceso.
* [[XMLDB problems|Problems]]: A comprehensive list of issues that need to be determined/solved prior to incorporate them into the [[XMLDB roadmap|roadmap]].
* [https://docs.moodle.org/dev/XMLDB_problems Problemas]: Una lista exahustiva de asuntos que necesitan ser determinados/resueltos antes de incorporarlos al mapa del camino [https://docs.moodle.org/dev/XMLDB_roadmap Mapa del camino (Roadmap)].


=== Instalación ===
=== Instalación ===
Línea 19: Línea 21:
=== Desarrollo ===
=== Desarrollo ===


* [[DDL functions|DDL functions]]: One list of the new XMLDB Data Definition functions and their usage.
* [https://docs.moodle.org/dev/DDL_functions DDL functions|DDL functions]: One list of the new XMLDB Data Definition functions and their usage.
* [[DML functions|DML functions]]: One list of the available Data Manipulation functions and their usage.
* [https://docs.moodle.org/dev/DML_functions DML functions|DML functions]: One list of the available Data Manipulation functions and their usage.
* [[XMLDB defining an XML structure|XMLDB Usage]]: Explanation about the XML schema basis, the [[XMLDB defining an XML structure#The XMLDB editor|XML editor]] embedded within Moodle, its [[XMLDB defining an XML structure#Conventions|naming conventions]] and one simple but illustrative [[XMLDB defining an XML structure#One example: the assignment module|example]].
* [https://docs.moodle.org/dev/XMLDB_defining_an_XML_structure XMLDB defining an XML structure|XMLDB Usage]: Explanation about the XML schema basis, the [https://docs.moodle.org/dev/XMLDB_defining_an_XML_structure#The_XMLDB_editor XML editor] embedded within Moodle, its [https://docs.moodle.org/dev/XMLDB_defining_an_XML_structure#Conventions naming conventions] and one simple but illustrative [https://docs.moodle.org/dev/XMLDB_defining_an_XML_structure#One_example:_the_assignment_module example].
* [[Installing and upgrading plugin database tables]]
* [https://docs.moodle.org/dev/Installing_and_upgrading_plugin_database_tables Installing and upgrading plugin database tables]
* [[Coding|Coding guidelines]]: The main coding guidelines and, more exactly, the [[Database|database structures section]] that you must follow carefully in order to produce good cross-db code.
* [https://docs.moodle.org/dev/Coding Coding|Coding guidelines]: The main coding guidelines and, more exactly, the [https://docs.moodle.org/dev/Database Database|database structures section] that you must follow carefully in order to produce good cross-db code.
* [[Database Schema|Database schema]]: Moodle database diagrams in [http://fabforce.net/dbdesigner4/ DBDesigner4] format.
* [https://docs.moodle.org/dev/Database_Schema Database schema]: Moodle database diagrams in [http://fabforce.net/dbdesigner4/ DBDesigner4] format.


=== Problemas y características nuevas ===
=== Problemas y características nuevas ===
Línea 43: Línea 45:


=== Vea también ===
=== Vea también ===
* [[XMLDB column types|DB column types]] - Some links about column types inside every RDBMS and their characteristics.
* [https://docs.moodle.org/dev/XMLDB_column_types DB column types] - Some links about column types inside every RDBMS and their characteristics.
* [[XMLDB key and index naming|DB key and index naming]] - Some info about automatic naming of keys/indexes and other objects.
* [https://docs.moodle.org/dev/XMLDB_key_and_index_naming DB key and index naming] - Some info about automatic naming of keys/indexes and other objects.
* [[XMLDB reserved words|DB reserved words]] - A collection of reserver words inside each RDBMS.
* [https://docs.moodle.org/dev/XMLDB_reserved_words DB reserved words] - A collection of reserver words inside each RDBMS.


[[Category:XMLDB]]
[[Category:XMLDB]]
[[Category:DB]]
[[Category:DB]]
[[Category:Instalación]]
[[Category:Instalación]]
[[en:Developer_tools]]

Revisión actual - 19:31 27 sep 2015

Nota: Pendiente de ACTUALIZAR esta traducción respecto a la página original en inglés (ver enlace hacia English en el cuadro abajo a la derecha).     (otras páginas pendientes)


XMLDB la capa de abstracción de la BasedeDatos de Moodle -- es la biblioteca (library) de código que le permite a Moodle interactuar con y acceder a la BasedeDatos.

En ésta página encontrará enlaces hacia toda la documentación relacionada con XMLDB. Currently you will find documents both belonging to the XMLDB category and to the general Instalación category, plus some interesting external links.

Introducción

  • Introducción: En donde se explica la idea general acerca de XMLDB.
  • Mapa del camino (Roadmap): Una vista general del proceso de implementar el subsistema XMLDB subsystem, con detalles para cada punto del proceso.
  • Problemas: Una lista exahustiva de asuntos que necesitan ser determinados/resueltos antes de incorporarlos al mapa del camino Mapa del camino (Roadmap).

Instalación

Desarrollo

Problemas y características nuevas

Documentación del motor de la BasedeDatos

Here are convenient links to the reference documentation of the various database engines we support, should you need to check that something is supported by all of them:

Vea también