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
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
Download
Patches
Plain diff
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
Timm Fitschen
requested to merge
f-remove-unique-result
into
dev
3 years ago
Overview
0
Commits
37
Pipelines
3
Changes
13
Expand
Summary
Remove UniqueResult
At and Size are lower-case now (ResultSet, MultiResultSet)
Edited
3 years ago
by
Timm Fitschen
0
0
Merge request reports
Compare
dev
version 3
f77226eb
3 years ago
version 2
f38dbd12
3 years ago
version 1
f38dbd12
3 years ago
dev (base)
and
version 3
latest version
5135df76
37 commits,
3 years ago
version 3
f77226eb
36 commits,
3 years ago
version 2
f38dbd12
1 commit,
3 years ago
version 1
f38dbd12
1 commit,
3 years ago
13 files
+
1542
−
263
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
doc/capi/index.rst.in
+
15
−
0
Options
@@ -24,6 +24,21 @@
@@ -24,6 +24,21 @@
C API
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::
.. toctree::
:glob:
:glob:
Loading