[sqlite] SQLite Amalgamation in a GIT repo

2015-08-05 Thread Andy Rahn
I found that there aren't any up-to-date GIT copies of just the amalgamation on github. So, I wrote up some simple steps whereby anyone could make their own. On a project that uses GIT and either git subtree or git submodules, this is a very handy way to keep SQLite up-to-date.

[sqlite] create temporary virtual table

2015-07-20 Thread Andy Rahn
releases some external resources, it can probably be safely > created in the temp database and cleaned up by SQLite on exit. Of course, > if you explicitly DROP it when you are done with it, the xDestroy methods > will be called and all should be as normal. > Peter > > > On

[sqlite] create temporary virtual table

2015-07-20 Thread Andy Rahn
I see there is no way to create a temporary virtual table. One idea I had was to create a second, in-memory db and attach that, then create the virtual table over there. Currently I have it working where as soon as I open the db, I use sqlite_master to find any left over virtual tables from

[sqlite] Suggestions for Fast Set Logic?

2015-07-20 Thread Andy Rahn
Thanks all for the interesting discussion, you've given me a lot to think about. I've worked with SQLite for 10+ years, but I still consider myself something of newbie compared to the folks here, which is why I asked. One thing is clear -- our lack of routine calls to ANALYZE might be a huge

[sqlite] Suggestions for Fast Set Logic?

2015-07-10 Thread Andy Rahn
t; 'chocolate'); > > will return all the data tuples associated with the keyword ('once' or > 'bonca') and 'chocolate' > > > > -Original Message- > > From: sqlite-users-bounces at mailinglists.sqlite.org [mailto:sqlite-users- > > bounces at mailinglists.sqlite.org] On Be

[sqlite] Suggestions for Fast Set Logic?

2015-07-09 Thread Andy Rahn
I want to build an application that can search for specific documents based on a lot of criteria from a user (e.g. matching keywords, text, etc...). And then to combine these results using boolean logic ... For example, keyword 'animal' AND rating > 3 Each document has an integer id. My strategy

[sqlite] Did A Recent Windows & Update Affect SQLite???

2015-04-01 Thread Andy Rahn
Hi Mark I echo the suggestion that you make sure your HDD is working properly by doing a disk scan of some sort. It's dangerous to start trying other solutions if the drive is about to fail! While you're at it, it's probably a good idea to make sure your backups are up to date -- and by backup

[sqlite] static malloc_zone_t* _sqliteZone_

2015-03-04 Thread Andy Rahn
's platforms. > > On Mar 3, 2015, at 7:27 PM, Andy Rahn wrote: >> >> Hi SQLite users; >> >> I have a question about _sqliteZone_ in mem1.c. I notice that the >> address of this static variable is used in a call to >> OSAtomicCompareAndSwapPtrBarrier on MacOS a

[sqlite] static malloc_zone_t* _sqliteZone_

2015-03-03 Thread Andy Rahn
Hi SQLite users; I have a question about _sqliteZone_ in mem1.c. I notice that the address of this static variable is used in a call to OSAtomicCompareAndSwapPtrBarrier on MacOS and iOS. That system call is declared in OSAtomic.h, which includes a note about the pointer alignment of its