forked from tilinna/go-nuodb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cnuodb.h
67 lines (54 loc) · 2.25 KB
/
cnuodb.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
Copyright (C) 2013 Timo Linna. All Rights Reserved.
C API wrapper for NuoDB C++ API
The interface has been designed for Go's CGO in mind, but it should be
usable from plain C too.
To reduce CGO function call and memory allocation overhead, the API
enforces the client to batch operations in:
- fetch column names
- bind parameters to a statement
- fetch row values from a result set
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include <stddef.h>
struct nuodb;
struct nuodb_statement;
struct nuodb_resultset;
enum nuodb_value_type {
NUODB_TYPE_NULL = 0,
NUODB_TYPE_INT64,
NUODB_TYPE_FLOAT64,
NUODB_TYPE_BOOL,
NUODB_TYPE_STRING, // used only for bind parameter
NUODB_TYPE_BYTES,
NUODB_TYPE_TIME
};
struct nuodb_value {
int64_t i64;
int32_t i32;
enum nuodb_value_type vt;
};
void nuodb_init(struct nuodb **db);
const char *nuodb_error(const struct nuodb *db);
int nuodb_open(struct nuodb *db, const char *database, const char *username, const char *password, const char **props, int props_count);
int nuodb_close(struct nuodb **db);
int nuodb_autocommit(struct nuodb *db, int *state);
int nuodb_autocommit_set(struct nuodb *db, int state);
int nuodb_commit(struct nuodb *db);
int nuodb_rollback(struct nuodb *db);
int nuodb_execute(struct nuodb *db, const char *sql, int64_t *rows_affected, int64_t *last_insert_id);
int nuodb_statement_prepare(struct nuodb *db, const char *sql, struct nuodb_statement **st, int *parameter_count);
int nuodb_statement_bind(struct nuodb *db, struct nuodb_statement *st, struct nuodb_value parameters[]);
int nuodb_statement_execute(struct nuodb *db, struct nuodb_statement *st, int64_t *rows_affected, int64_t *last_insert_id);
int nuodb_statement_query(struct nuodb *db, struct nuodb_statement *st, struct nuodb_resultset **rs, int *column_count);
int nuodb_statement_close(struct nuodb *db, struct nuodb_statement **st);
int nuodb_resultset_column_names(struct nuodb *db, struct nuodb_resultset *rs, struct nuodb_value names[]);
int nuodb_resultset_next(struct nuodb *db, struct nuodb_resultset *rs, int *has_values, struct nuodb_value values[]);
int nuodb_resultset_close(struct nuodb *db, struct nuodb_resultset **rs);
#ifdef __cplusplus
}
#endif