-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathchdbSimple.c
74 lines (62 loc) · 2.15 KB
/
chdbSimple.c
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
68
69
70
71
72
73
74
#include <dlfcn.h> // Include for dynamic loading
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Assuming chdb.h defines the structure and functions we need
#include "chdb.h"
int main()
{
void * handle;
struct local_result * (*query_stable)(int, char **);
void (*free_result)(struct local_result *);
// Load the libchdb.so from the parent directory
handle = dlopen("../libchdb.so", RTLD_LAZY);
if (!handle)
{
fprintf(stderr, "Error loading libchdb.so: %s\n", dlerror());
exit(1);
}
// Get the query_stable function
*(void **)(&query_stable) = dlsym(handle, "query_stable");
if (!query_stable)
{
fprintf(stderr, "Could not find query_stable: %s\n", dlerror());
dlclose(handle);
exit(1);
}
// Get the free_result function
*(void **)(&free_result) = dlsym(handle, "free_result");
if (!free_result)
{
fprintf(stderr, "Could not find free_result: %s\n", dlerror());
dlclose(handle);
exit(1);
}
// Define query parameters
const char * queryStr = "SELECT 'Hello libchdb.so from chdbSimple'"; // Replace with your query string
// Prepare the argument array
char * argv[10]; // Adjust array size as needed
int argc = 0;
argv[argc++] = "clickhouse";
argv[argc++] = "--multiquery";
argv[argc++] = "--output-format=CSV";
// Add query string
char query_arg[1000]; // Adjust size to fit actual query string length
sprintf(query_arg, "--query=%s", queryStr);
argv[argc++] = query_arg;
// Call the query_stable function
struct local_result * result = query_stable(argc, argv);
// Print results (assuming it's a string type, adjust according to actual data type)
if (result)
{
printf("Query Result: %s\n", result->buf);
printf("Elapsed Time: %fs\n", result->elapsed);
printf("Rows Read: %llu\n", (unsigned long long)result->rows_read);
printf("Bytes Read: %llu\n", (unsigned long long)result->bytes_read);
// Free the result
free_result(result);
}
// Remember to close the library handle at the end
dlclose(handle);
return 0;
}