Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

taffydb · TaffyDB Support and User Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 185
  • Category: JavaScript
  • Founded: Apr 25, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 447 - 476 of 476   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
476 Douglas Turner
hg_giant Send Email
Apr 30, 2013
6:42 pm
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...
475 chrish_taffydb Apr 1, 2013
2:26 pm
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...
474 purpleflurm Mar 26, 2013
10:06 pm
You can actually use "likenocase&quot; instead of "like", and it will work, e.g. {name: {likenocase:_q}}...
473 elfgoh Send Email Mar 21, 2013
1:17 pm
I am trying to initiate .callback() upon .remove() as follows: Favourite({favourite_id:{is:id}}).remove().callback(function(){ alert('moo&#39;); }); However this...
472 xybrek88 Send Email Mar 20, 2013
7:52 pm
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...
471 elfgoh Send Email Mar 20, 2013
1:31 pm
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()...
470 Ian Toltz
itoltz Send Email
Mar 12, 2013
4:15 pm
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. ...
469 hunky_dori1988 Mar 12, 2013
3:15 pm
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. ...
468 hleogr Jan 2, 2013
9:05 pm
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...
467 Marty
madcitymm Send Email
Dec 7, 2012
5:32 pm
my application has a code line of: vmpgcity=vlist().order("mpgcity").distinct("mpgcity&quot;).map(function(mpgcity){return mpgcity;}); in "search4t.js" at line 186 ...
466 Marty
madcitymm Send Email
Dec 6, 2012
8:32 pm
Found solution: <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script...
465 Marty
madcitymm Send Email
Nov 29, 2012
8:50 pm
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...
464 Ian Toltz
itoltz Send Email
Oct 29, 2012
11:17 pm
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...
463 niz75018 Send Email Oct 29, 2012
9:12 pm
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...
462 David Kantowitz
dkantowitz Send Email
Oct 28, 2012
7:55 pm
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...
461 niz75018 Send Email Oct 27, 2012
10:24 pm
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&quot; message. Is this normal? how...
460 Marty
madcitymm Send Email
Sep 30, 2012
2:49 pm
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...
459 Rory Barrett
rorybarrett23 Send Email
Sep 22, 2012
2:27 am
Hello Colleagues I have been playing around with Taffy and am impressed. How does Taffy read from a csv table with say 50 records ? Rory Barrett...
458 hleogr Sep 17, 2012
1:41 pm
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...
457 bitflipperjoel Send Email Sep 12, 2012
11:26 pm
This code: var db = TAFFY([ {col1:'a&#39;,col2:'c'}, {col1:'a&#39;,col2:'b'}, {col1:'a&#39;,col2:'a'}, {col1:'1&#39;,col2:'a'}, {col1:'1&#39;,col2:'b'},...
456 Karl
karl1coleman Send Email
Aug 31, 2012
4:12 pm
Still trying to figure out my last problem. Throwing stuff against the wall to see what sticks at this point. What's the difference between ...
455 Karl
karl1coleman Send Email
Aug 31, 2012
4:12 pm
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()...
454 michaelbluejay Send Email Aug 31, 2012
5:23 am
... 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 =...
453 Jason Wright
jayraywright Send Email
Aug 31, 2012
2:37 am
You could use something like: $queryResults=db().filter({col4:value}).order("col2"); Would give an array of rows which match the query "col4=value&quot; and sorts...
452 michaelbluejay Send Email Aug 31, 2012
1:52 am
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...
451 exuma_cam Send Email Aug 30, 2012
1:54 am
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...
450 exuma_cam Send Email Aug 30, 2012
12:48 am
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...
449 Karl Coleman
karl1coleman Send Email
Aug 28, 2012
8:16 pm
Here's the query I'm doing, with the details removed. Pretty basic. The db has 1060 records, nothing crazy large IMO. records = db().join(teams,...
448 Jason Wright
jayraywright Send Email
Aug 17, 2012
7:36 pm
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...
447 Jason Wright
jayraywright Send Email
Aug 17, 2012
7:09 pm
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...
Messages 447 - 476 of 476   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help