Hi,

On Wed, Jan 7, 2009 at 6:11 AM, sol <sol.simp...@gmail.com> wrote:

>
> I'm not an sqlite guru, so I can only point to relevant doc's:
>
> http://www.sqlite.org/lang_createvtab.html
>
> The format after USING is
>
>   module-name (module-arg-list)
>
> where the (module-arg-list) is optional.
>
> I got fts3 working by letting sqlalchemy do its thing and then issue
> explicit drop and create virtual table statements on the DB. I can
> then use the match() filter and it seems fine.
>
> It would be great to have a way to do this without having to manually
> mod the db.
>

Yeah the syntax is just:
CREATE VIRTUAL TABLE tablename using FTS3 (...)

When I wrote the unit tests I just did the create sql manually using execute
and then autoloaded from there. I'd like to see the support of the USING
syntax.

-- 
Michael Trier
http://blog.michaeltrier.com/
http://thisweekindjango.com/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to