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
  • dev
  • f-filesystem-cleanup
  • f-filesystem-core
  • f-filesystem-directory
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-main
  • f-linkahead-rename
  • f-mysql8-tests
  • f-name
  • f-permission-checks-2
  • f-real-id
  • f-retrieve-history
  • keep_changes
  • main
  • t-distinct-parents
  • v2.0.30
  • v3.0
  • v4.0.0
  • v4.1.0
  • v5.0.0
  • v6.0.0
  • v6.0.1
  • v7.0.0
  • v7.0.1
  • v7.0.2
  • v8.0.0
27 results

Target

Select target project
  • caosdb/src/caosdb-mysqlbackend
1 result
Select Git revision
  • dev
  • f-filesystem-cleanup
  • f-filesystem-core
  • f-filesystem-directory
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-main
  • f-linkahead-rename
  • f-mysql8-tests
  • f-name
  • f-permission-checks-2
  • f-real-id
  • f-retrieve-history
  • keep_changes
  • main
  • t-distinct-parents
  • v2.0.30
  • v3.0
  • v4.0.0
  • v4.1.0
  • v5.0.0
  • v6.0.0
  • v6.0.1
  • v7.0.0
  • v7.0.1
  • v7.0.2
  • v8.0.0
27 results
Show changes
Commits on Source (8)
......@@ -22,7 +22,7 @@ import sphinx_rtd_theme
# -- Project information -----------------------------------------------------
project = 'caosdb-mysqlbackend'
copyright = '2021, IndiScale GmbH'
copyright = '2021 - 2024, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
......
......@@ -10,7 +10,9 @@ Welcome to documentation of CaosDB's MySQL Backend!
Getting started <README_SETUP>
Concepts <concepts>
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
: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
IF(versioned,
'` (id, _iversion) SELECT eids.internal_id, _get_head_iversion(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;
EXECUTE initEntityStmt;
EXECUTE initEntityStmt USING @query_param;
DEALLOCATE PREPARE initEntityStmt;
END IF;
......