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
3
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
3
Summary
Remove UniqueResult
At and Size are lower-case now (ResultSet, MultiResultSet)
Edited
Aug 12, 2021
by
Timm Fitschen
0
0
Merge request reports
Viewing commit
b1b0a8c6
Prev
Next
Show latest version
3 files
+
62
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
b1b0a8c6
WIP: Implement transactions in Extern C
· b1b0a8c6
florian
authored
Aug 9, 2021
include/ccaosdb.h
+
4
−
0
View file @ b1b0a8c6
Show full file
@@ -249,8 +249,12 @@ int caosdb_connection_connection_create_transaction(
caosdb_transaction_transaction
*
out
);
int
caosdb_transaction_transaction_retrieve_by_id
(
caosdb_transaction_transaction
*
transaction
,
const
char
*
id
);
// TODO(fspreck) retrieve_by_ids what do we do about iterators in Extern C? Is
// this even a problem?
int
caosdb_transaction_transaction_execute
(
caosdb_transaction_transaction
*
transaction
);
// TODO(fspreck) execute_asynchronously may be added as a separate
// function once we actually support asynchronous execution.
typedef
struct
{
void
*
wrapped_result_set
;
Loading