Skip to content
Snippets Groups Projects
Commit 3201a617 authored by florian's avatar florian
Browse files

DRAFT: Add declarations for insert, update, and delete

parent f371a542
No related branches found
No related tags found
1 merge request!15ENH: Allow insert/update/delete and files in Extern C
This commit is part of merge request !15. Comments created here will be created in the context of that merge request.
......@@ -320,6 +320,13 @@ int caosdb_transaction_result_set_at(caosdb_transaction_result_set *result_set,
int caosdb_transaction_result_set_size(
caosdb_transaction_result_set *result_set, int *out);
int caosdb_transaction_transaction_insert_entity(
caosdb_transaction_transaction *transaction, caosdb_entity_entity *entity);
int caosdb_transaction_transaction_update_entity(
caosdb_transaction_transaction *transaction, caosdb_entity_entity *entity);
int caosdb_transaction_transaction_delete_by_id(
caosdb_transaction_transaction *transaction, const char *id);
typedef struct {
void *wrapped_property;
bool _deletable = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment