Dear libzdb maintainers,
There is possibility to start read-only transactions?
If not there are plans to support such a feature?
I have seen in the source code that it will be fairly simple to add, I can
take it over my self such an endeavor but I need to know it is in the best
interest and conforms with your own rules and future development.
Thanks,
Cosmin Cioranu
Dear,
I install the libzdb,but failed err msg is "in function _Atomic expected declaration specifiers before 'KstatementID' ". if I want install the version 3.3.3 ,which gcc version is better ?could you help me ? thanks !
C++ install dir
Hi guys,
I‘m trying to rewrite my project with Libzdb, however, my origin project was used to MYSQL official style, now I’m facing problem with the result of mysql. If I want to get MYSQL_RES in Libzdb, what should I do?
Dear libzdb users ;)
trying to compile libzdb 3.2 on an opensuse 15.1 box via
./configure --prefix=/usr --libdir=/usr/lib64 --without-postgresql
--without-sqlite
make then throws an error, see below ...
how can I fix this?
thanks & greetings
Becki
cx20:~/software/libzdb/libzdb-3.2 # make
make all-recursive
make[1]: Entering directory '/root/software/libzdb/libzdb-3.2'
Making all in .
make[2]: Entering directory '/root/software/libzdb/libzdb-3.2'
make[2]: Nothing to be done for 'all-am'.
make[2]: Leaving directory '/root/software/libzdb/libzdb-3.2'
Making all in test
make[2]: Entering directory '/root/software/libzdb/libzdb-3.2/test'
g++ -DHAVE_CONFIG_H -I/usr/include/mysql
-I/usr/include/mysql/mariadb -I../zdb -std=c++17 -g -O2 -c -o
zdbpp-zdbpp.o `test -f 'zdbpp.cpp' || echo './'`zdbpp.cpp
zdbpp.cpp: In function ‘void testQuery(zdb::ConnectionPool&)’:
zdbpp.cpp:60:9: error: ‘assert’ was not declared in this scope
assert(result.columnCount() == 4);
^~~~~~
zdbpp.cpp:60:9: note: suggested alternative: ‘qsort’
assert(result.columnCount() == 4);
^~~~~~
qsort
make[2]: *** [Makefile:445: zdbpp-zdbpp.o] Error 1
make[2]: Leaving directory '/root/software/libzdb/libzdb-3.2/test'
make[1]: *** [Makefile:758: all-recursive] Error 1
make[1]: Leaving directory '/root/software/libzdb/libzdb-3.2'
make: *** [Makefile:503: all] Error 2
Try this
./configure --with-oci-include=/usr/include/oracle/11.2/client/ --with-oci-lib=/usr/lib/oracle/11.2/client/lib/
> On 27 Oct 2016, at 15:03, 方彪 <fangbiao2008(a)foxmail.com> wrote:
>
> Hello:
> I am a software engineer in hangzhou ,Zhejiang province, because of job requirements,I need to use the Ubuntu system based on libzdb development support Oracle Database,According to the following website description,(https://segmentfault.com/a/1190000003739454),I successfully installed client x86 for Oracle and has been connected to the remote Oracle database server,but when I configure the libzdb programe ,print result not support Oracle(Oracle: DISABLED ). Print the following information:
>
> ......
> checking for oracle... checking for Oracle OCI headers in /usr/include/oracle/11.2/client/... yes
> checking for Oracle OCI libraries in /usr/lib/oracle/11.2/client/lib/... not found
> checking if Oracle support is enabled... no
> ......
>
> But Oracle OCI libraries in /usr/lib/oracle/11.2/client/lib/ already exist,Can you help me and explain why?
> Thank you very much!