有没有办法在不安装 R 包的情况下在 C++ 应用程序中使用 MonetDBLite 作为存储引擎?或者有没有其他方法可以将 MonetDB 用作像 SQLite 这样的嵌入式数据库?
1 回答
您可以从 C/C++ 等中使用它,如下所示:
从 GitHub https://github.com/hannesmuehleisen/MonetDBLite下载/克隆 R 包源
,然后转到该src
文件夹并运行配置:
./configure --enable-embedded --disable-fits --disable-geom --disable-rintegration --disable-gsl --disable-netcdf --disable-jdbc --disable-merocontrol --disable-odbc --disable-console --disable-microhttpd --without-openssl --without-uuid --without-curl --without-bz2 --without-lzma --without-libxml2 --without-perl --without-python2 --without-python3 --without-unixodbc --disable-mapi --without-samtools --without-sphinxclient --without-geos --without-samtools --without-readline --enable-optimize --enable-silent-rules --disable-int128
构建它make -j
(这将需要一段时间)
然后,您可以按如下方式构建 MonetDBLite 共享库:
gcc -shared -o libmonetdb5.so `find common gdk mal/mal mal/modules mal/optimizer sql embedded -name "*.o" | tr "\n" " "` -lpthread -lpcre -lz -liconv
您最终应该得到一个包含所有 MonetDBLite 代码的大 (5 MB) 文件 libmonetdb5.so。现在从您自己的程序中使用它:
这是一个使用嵌入式 MonetDB 的示例 C 程序:
#include "monetdb_config.h"
#include "sql_scenario.h"
#include "mal.h"
#include "embedded.h"
int main() {
char* err = NULL;
void* conn = NULL;
res_table* result = NULL;
err = monetdb_startup("/tmp/embedded-dbfarm", 1, 0);
if (err != NULL) {
fprintf(stderr, "Init fail: %s\n", err);
return -1;
}
conn = monetdb_connect();
err = monetdb_query(conn, "SELECT * FROM tables;", 1, (void**) &result);
if (err != NULL) {
fprintf(stderr, "Query fail: %s\n", err);
return -2;
}
fprintf(stderr, "Query result with %i cols and %lu rows\n", result->nr_cols, BATcount(BATdescriptor(result->cols[0].b)));
monetdb_disconnect(conn);
monetdb_shutdown();
}
将其保存到文件src
夹(此处为test.c
)中的文件中并构建它:
gcc test.c -Icommon/options -Icommon/stream -Igdk -Imal/mal -Imal/modules/atoms -Imal/modules/mal -Isql/include -Isql/backends/monet5 -Isql/server -Isql/common -Isql/storage -Iembedded -lmonetdb5 -L.
这应该是全部,当你运行它时(./a.out
),它应该说Query result with 9 cols and 44 rows
。请注意,您只需要将libmonetdb5.so
文件与已编译的程序一起发布,而不需要源树的其余部分。
作为旁注,我们希望在未来简化这一过程。