What are the limitations in doing this? I want to have the syncing between Android/iOS devices managed by Dropbox. 1Password already does it and it works...
Hi I have a basic form with some tick boxes which I want to use as product selections. My javascript knowledge is fairly basic so I imagine that I am doing...
I am trying to initiate .callback() upon .remove() as follows: Favourite({favourite_id:{is:id}}).remove().callback(function(){ alert('moo39;); }); However this...
I have this query that works pretty well: var _q = "some query" products([{name:{like:_q}},{info:{like:_q}}]).select("id"); However, the query is case...
I am using .store() with TaffyDB to persist data to localStorage. I would like to be able to 'boot' TaffyDB up from localStorage, and continue using .store()...
Taffydb isn't a database. It doesn't offer persistent storage. You'll need to find a solution to that, e.g. localStorage, cookies, or using a remote database. ...
Hi, I am new to Taffy. A quick question , I have an application where i push records on button click, if the application is reloaded all the records are lost. ...
Is there a smart way to remove duplicates from a TAFFYDB? I would like to use a extension where a key is generated from specified colums representing a key and...
my application has a code line of: vmpgcity=vlist().order("mpgcity").distinct("mpgcity").map(function(mpgcity){return mpgcity;}); in "search4t.js" at line 186 ...
Mike, Can you post the exact <head..</head> links for your fix? I have not been able to get IE from giving the "JSON is Undefined" error, even using a doctype...
If storing the database is important for you, then this might not be the right solution. That said, the database is just a JavaScript object, and you could use...
thank you but i want my db persist, even if y close browser/application. maybe i will use sqlite if i don't find a solution but i really like the simplicity of...
Hello, I haven't used phonegap, but a common javascript browser trick is to assign your data to the variable "top.name". This variable keeps it's value across...
hello, sorry for my english in my index.html page, i created a database but when i call data in another page i have "undefined" message. Is this normal? how...
In 1.7xx I did ranges by doing two sequential query's and I could do so in 2.6 but was hoping for a more elegant solution, especially as I'm building my...
Before filing this as an open issue I would like to check whether this is a bug or not. If I create a db variable with taffy() a run several queries with regex...
Do db(fieldValue).order("col2").select("col1", "col2", "col3") In reply to your response to Jason, the way to get an array back if you aren't using .select()...
... Thank you, though I can't figure out how to make your answer applicable to what I'm trying to do. Again, here's a query, which works fine: mydata =...
You could use something like: $queryResults=db().filter({col4:value}).order("col2"); Would give an array of rows which match the query "col4=value" and sorts...
I know that the documentation purportedly explains how to do queries, but I find it exceptionally difficult to understand, and the lack of practical examples...
I think I just answered my own question and the answer is "no" one database should suit me just fine. In playing with this it dawned on me that using standard...
I am new to TaffyDB, so I apologize if this is a noob question. I am coming from a WebSQL framework. The data I am accessing from the web service are JSON...
Thinking about the situation a little more, if I didn't want to use a subdatabase, I could use a special code to describe the order of the operation, then...
TAFFY(db().get()) That's exactly what I was wanting. Basically, in my financial planning software, I have a lot of data that I need to access, but the order of...