[sqlite] HELP!!!! LINKING AND LOADING FTS - on Linux/Ubuntu

2007-09-17 Thread Uma Krishnan
Hello, I'm having trouble loading fts2. I modified makefile to create fts2 library on Linux/Ubuntu. When I attempt to load fts2 using the command: select load_extension('fts2'), i get the error shared library not found. ( noticed that it had not created the .so file, only .la file.) I do

Re: [sqlite] HELP!!!! LINKING AND LOADING FTS - on Linux/Ubuntu

2007-09-17 Thread Scott Hess
To help isolate if it's actually a library path problem, you might try using the full path. So, instead of: select load_extension('fts2'); do: select load_extension('/path/to/libfts2.so'); Modified for Windows as appropriate (sorry, I mostly use Linux and static linking). If that works,

Re: [sqlite] HELP!!!! LINKING AND LOADING FTS - on Linux/Ubuntu

2007-09-17 Thread Scott Derrick
is the fts2 a library? if so you probably need to put it in a directory that is in the list of library directory's. You also may need to run ldconfig to update the dynamic linker as the the whereabouts of your new lib. use man ldconfig for the how-to Scott Uma Krishnan wrote: Hello, I'm