Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an extended function library for SQLite?

Is there an extended function library for sqlite?

I am trying out sqlite and realized that a lot of the functions I could expect to take for granted in other sql databases don't exist in it, although it appears they can be added to it.

Are there some ready made libraries like that for it?

like image 236
vfclists Avatar asked Oct 15 '22 06:10

vfclists


1 Answers

Extension functions for SQLite in C for free
http://old.nabble.com/Extension-functions-for-SQLite-in-C-for-free-td8833684.html

FTS3 is an SQLite virtual table module that allows users to perform full-text searches on a set of documents. http://www.sqlite.org/fts3.html

like image 174
Robert Harvey Avatar answered Nov 15 '22 12:11

Robert Harvey