Skip to content
Snippets Groups Projects
Verified Commit 3f8279d1 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

Merge branch 'f-filesystem-directory' into f-filesystem-link

parents 2b00f0bb d6ef8cd1
No related tags found
1 merge request!13Draft: EHN: file system: link
Pipeline #48984 failed
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment