I am embedding Monetdbe into a multi-threaded C++ application. I have several threads running on the server-side of my application and each thread opens its own instance of the same Monetdb database, i.e. each thread runs the following code: monetdbe_database db = NULL; if (monetdbe_open(&db, url /* inmemory database */, NULL /* no options */)) ..
Category : monetdb
I am trying to integrate Monetdbe into my C++ application. However, if I try to include the "Monetdbe.h" file in my existing C++ code I get a lot of errors. an example error is below /usr/include/c++/9/bits/stl_tree.h:774:41: error: macro "static_assert" passed 4 arguments, but takes just 2 If however, I remove the following lines from the ..
I am trying to integrate the MonetDBe application into my C++ application. I downloaded the source code and built MonetDB and linked the libmonetdbe.so library to my application. I tried to run the example "getstarted" I had to change the declaration of the string SQL statements to the following to get the code to compile. ..
I am new to MonetDB, and want to write an SQL query in C++ that includes a C++ function as shown in the link below, but I’m not sure how to actually do this. https://www.monetdb.org/index.php/blog/JIT_C_C%252B%252B_UDFs_in_MonetDB If I set up an ODBC connection can I send the function along with the SQL query via the ODBC ..
Recent Comments