Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • caosdb/src/caosdb-mysqlbackend
1 result
Select Git revision
Loading items
Show changes
Commits on Source (8)
...@@ -22,7 +22,7 @@ import sphinx_rtd_theme ...@@ -22,7 +22,7 @@ import sphinx_rtd_theme
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'caosdb-mysqlbackend' project = 'caosdb-mysqlbackend'
copyright = '2021, IndiScale GmbH' copyright = '2021 - 2024, IndiScale GmbH'
author = 'Daniel Hornung' author = 'Daniel Hornung'
# The short X.Y version # The short X.Y version
......
...@@ -11,6 +11,8 @@ Welcome to documentation of CaosDB's MySQL Backend! ...@@ -11,6 +11,8 @@ Welcome to documentation of CaosDB's MySQL Backend!
Concepts <concepts> Concepts <concepts>
Maintenance Maintenance
API documentation <functions> API documentation <functions>
Related Projects <related_projects/index>
Back to Overview <https://docs.indiscale.com/>
This documentation helps you to :doc:`get started<README_SETUP>`, explains the most important This documentation helps you to :doc:`get started<README_SETUP>`, explains the most important
:doc:`concepts<concepts>` . :doc:`concepts<concepts>` .
......
Related Projects
++++++++++++++++
.. toctree::
:maxdepth: 2
:caption: Contents:
:hidden:
.. container:: projects
For in-depth documentation for users, administrators and developers, you may want to visit the subproject-specific documentation pages for:
:`Server <https://docs.indiscale.com/caosdb-server>`_: The Java part of the LinkAhead server.
:`WebUI <https://docs.indiscale.com/caosdb-webui>`_: The default web frontend for the LinkAhead server.
:`PyLinkAhead <https://docs.indiscale.com/caosdb-pylib>`_: The LinkAhead Python library.
:`Advanced user tools <https://docs.indiscale.com/caosdb-advanced-user-tools>`_: The advanced Python tools for LinkAhead.
:`LinkAhead Crawler <https://docs.indiscale.com/caosdb-crawler/>`_: The crawler is the main tool for automatic data integration in LinkAhead.
:`LinkAhead <https://docs.indiscale.com/caosdb-deploy>`_: Your all inclusive LinkAhead software package.
:`Back to Overview <https://docs.indiscale.com/>`_: LinkAhead Documentation.
...@@ -80,9 +80,10 @@ initEntityLabel: BEGIN ...@@ -80,9 +80,10 @@ initEntityLabel: BEGIN
IF(versioned, IF(versioned,
'` (id, _iversion) SELECT eids.internal_id, _get_head_iversion(eids.internal_id) ', '` (id, _iversion) SELECT eids.internal_id, _get_head_iversion(eids.internal_id) ',
'` (id) SELECT eids.internal_id '), '` (id) SELECT eids.internal_id '),
'FROM entity_ids AS eids WHERE eids.id=',eid,';'); 'FROM entity_ids AS eids WHERE eids.id=?;');
SET @query_param = eid;
PREPARE initEntityStmt FROM @initEntityStmtStr; PREPARE initEntityStmt FROM @initEntityStmtStr;
EXECUTE initEntityStmt; EXECUTE initEntityStmt USING @query_param;
DEALLOCATE PREPARE initEntityStmt; DEALLOCATE PREPARE initEntityStmt;
END IF; END IF;
......