Zoobave <[EMAIL PROTECTED]> wrote:
> Hello group,
> 
>          In sqlite, how to load fts1 module in 'C'?  I couldn't execute the
> *"select load_extension('libfts1.so');" * query using "sqlite3_exec"
> function.  How can i execute the above query to load fts1 module, in order
> to use virtual tables?
> 


  sqlite3_enable_load_extension(db, 1);
  sqlite3_load_extension(db, "./libfts1.so", 0, 0);

--
D. Richard Hipp <[EMAIL PROTECTED]>


-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to