search for: sqlite3_open

Displaying 10 results from an estimated 10 matches for "sqlite3_open".

2014 Nov 08
2
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...ring cross compilation to a system without the libz target package: --- dovecot-2.2.15.org/configure.ac 2014-10-25 05:57:08.000000000 +0200 +++ dovecot-2.2.15/configure.ac 2014-11-08 10:06:23.015570150 +0100 @@ -2293,7 +2293,7 @@ if test $want_sqlite != no; then AC_CHECK_LIB(sqlite3, sqlite3_open, [ AC_CHECK_HEADER(sqlite3.h, [ - SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -lz" + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3" AC_DEFINE(HAVE_SQLITE,, Build with SQLite3 support) foun...
2016 Feb 24
2
SQLite driver and auth-worker credentials
...nly access on a sqlite > database is via filesystem permissions. I would recommend setting > your database to 640 and ensure that any modifying process runs > with the owning UID. dovecot CAN NOT open SQLite database with read-only permissions set! It is problem ?1 in my message: it uses sqlite3_open() API which requires read-write access and fails otherwise. > Dovecot processes will not assume they should run as a GID based on > the UID to which they are assigned; you need to explicitly set the > GID of But system should assign all secondary GIDs to effective UID? > the process...
2011 Jan 16
1
problem installing rgdal
...erence to `sqlite3_bind_double' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_bind_blob' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_step' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_get_table' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_open' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_free_table' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_reset' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_column_bytes' /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_column_blob'...
2015 Apr 22
0
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...without > the libz target package: > > --- dovecot-2.2.15.org/configure.ac 2014-10-25 05:57:08.000000000 +0200 > +++ dovecot-2.2.15/configure.ac 2014-11-08 10:06:23.015570150 +0100 > @@ -2293,7 +2293,7 @@ > if test $want_sqlite != no; then > AC_CHECK_LIB(sqlite3, sqlite3_open, [ > AC_CHECK_HEADER(sqlite3.h, [ > - SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -lz" > + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3" > > AC_DEFINE(HAVE_SQLITE,, Build with SQLite3 support) &gt...
2005 Dec 22
0
Getting AdapterNotSpecified on simple script/generate
...(ruby) 7. sqlite3-ruby 0.9.0 (ruby) 8. sqlite3-ruby 0.9.0 (mswin32) 9. sqlite3-ruby 0.6.0 (ruby) 10. sqlite3-ruby 0.5.0 (ruby) 11. Cancel installation > 2 Building native extensions. This could take a while... ruby extconf.rb install sqlite3-ruby checking for sqlite3.h... yes checking for sqlite3_open() in -lsqlite3... yes creating Makefile make gcc -fno-common -g -O2 -pipe -fno-common -I. -I/usr/local/lib/ruby/1.8/powerpc-darwin8.3.0 -I/usr/local/lib/ruby/1.8/powerpc-darwin8.3.0 -I. -DHAVE_SQLITE3_H -I/usr/local/include -c sqlite3_api_wrap.c cc -dynamic -bundle -undefined suppress -flat_n...
2014 Sep 03
2
[LLVMdev] Convert C code with external library access to llvm
Hi, I have written a c program which accesses sqlite database. Normally I compile the program as $ clang insertselect.c -l sqlite3 To emit-llvm I use: > $ clang insertselect.c -S -emit-llvm How do I link the sqlite3 library so that llvm can generate IR with the IR being linked to the external library? Thanks for your help? Thanks Prakash -------------- next part -------------- An
2016 Feb 24
2
SQLite driver and auth-worker credentials
I want to use SQLite database as storage for auth and user databases. I've encountered two problems here: (1) There is no way to open SQLite database read-only (via sqlite3_open_v2() call with SQLITE_OPEN_READONLY flag). It looks bad. I don't need (and want) to give dovecot rights to write to this database. (2) I've created system group "hostingdb", added "dovecot" user to it and gives 660 rights to database file, but still "auth-worker&q...
2011 Jan 17
2
How to still processing despite bug errors?
...ind_double' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_bind_blob' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_step' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_get_table' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_open' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_free_table' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_reset' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlite3_column_bytes' > /usr/lib/libgdal1.7.0.so: undefined reference to `sqlit...
2009 Apr 26
4
1.6.1: menuselect has problems with x86_64 ??
1.6.1 svn 190575: CC="cc" CXX="g++" LD="" AR="" RANLIB="" CFLAGS="" make -C menuselect CONFIGURE_SILENT="--silent" menuselect make[1]: Entering directory `/home/asterisk/rpmbuild/BUILD/asterisk-1.6.1/menuselect' gcc -m64 -march=native -mtune=native -floop-interchange -floop-strip-mine -floop-block -c -o
2016 May 25
4
[PATCH 0/4] qemu: Use sqlite to store qemu detection data.
Patches 1 & 2 were posted previously here: https://www.redhat.com/archives/libguestfs/2016-May/msg00134.html Patch 3 is a hack so I can test this using my own version of qemu (the `-L ?' stuff is not upstream). Patch 4 is where the real action takes place: Replace the caching of qemu features in blob-like files with a sqlite database. Probably the best way to approach this patch is to