Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-cpplib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-cpplib
Merge requests
!9
Draft: API: remove UniqueResult, lower-case at, size for ResultSet
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Draft: API: remove UniqueResult, lower-case at, size for ResultSet
f-remove-unique-result
into
dev
Overview
0
Commits
37
Pipelines
3
Changes
13
Closed
Draft: API: remove UniqueResult, lower-case at, size for ResultSet
Timm Fitschen
requested to merge
f-remove-unique-result
into
dev
Aug 12, 2021
Overview
0
Commits
37
Pipelines
3
Changes
13
Summary
Remove UniqueResult
At and Size are lower-case now (ResultSet, MultiResultSet)
Edited
Aug 12, 2021
by
Timm Fitschen
0
0
Merge request reports
Compare
dev
version 3
f77226eb
Aug 12, 2021
version 2
f38dbd12
Aug 12, 2021
version 1
f38dbd12
Aug 12, 2021
dev (base)
and
latest version
latest version
5135df76
37 commits,
Aug 12, 2021
version 3
f77226eb
36 commits,
Aug 12, 2021
version 2
f38dbd12
1 commit,
Aug 12, 2021
version 1
f38dbd12
1 commit,
Aug 12, 2021
13 files
+
1489
−
263
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
doc/capi/index.rst.in
+
15
−
0
View file @ 5135df76
Show full file
@@ -24,6 +24,21 @@
C API
=====
.. note::
When working with libcaosdb's C API keep the following in
mind. Delete all objects (transactions, entities, properties,
parents, ...) that you created using a `caosdb_..._create_...`
function and only those.
The underlying reason is that all C++ objects are realized in the
Extern C interface as mutable structs containing a void pointer to
the actuall C++ object which is not filled when initializing the
struct but after calling a create function instead. If the C++
object wasn't created using a create function, e.g., the parent
object when getting a parent of an entity, it is owned by another
object and deleted together with that object.
.. toctree::
:glob:
Loading