Search the web
Sign In
New User? Sign Up
taffydb · TaffyDB Support and User Group
? 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.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 201   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1
Hi! Taffy DB is a great piece of software! I'm testing to use it in a CDRom project against a database with about 15k records. There are some simple method I...
anodari
Offline Send Email
Apr 27, 2008
2:30 pm
2
I think I understand what you are trying to do and you don't need to use Eval for it. This should work: var year = 2006; var city = "New York"; var rsltSet =...
tacoman_cool
Offline Send Email
Apr 27, 2008
5:17 pm
3
I added a new example application to show how to use TaffyDB in the real world. I hope to add more of these in the future so let me know what you are looking...
tacoman_cool
Offline Send Email
Apr 27, 2008
5:28 pm
4
Version 1.3 is out. A minor bug fix together with a large drop in code size. Take a look and download it at: http://taffydb.com...
tacoman_cool
Offline Send Email
Apr 28, 2008
8:44 pm
5
I know that you have the "contains" option, but what about finding records with an empty array? I have tried a few options that don't seem to work. Thanks, ...
berg.matt
Offline Send Email
Apr 29, 2008
2:10 pm
6
Hi Matt, You know, I don't think you can do that natively....but it may be a good thing to add. One thing you can do currently is create a new column with...
tacoman_cool
Offline Send Email
Apr 29, 2008
2:50 pm
7
Ian, Adding the ability to find by length sounds like the perfect solution, especially if it is flexible for both arrays and strings. What you have envisioned...
berg.matt
Offline Send Email
Apr 29, 2008
3:08 pm
8
Hey Matt, I dropped another release that I think will address your issue. Download the latest on taffydb.com There should now be a couple of ways of finding an...
tacoman_cool
Offline Send Email
Apr 30, 2008
4:44 pm
9
That is awesome. While I didn't request this, it is a welcome addition. Thanks for your prompt attention to this deficiency. -Don...
Don Smith
donwsmith@...
Send Email
Apr 30, 2008
5:09 pm
10
Ian, Thanks for the prompt response. It works perfectly. Not to be the only one to keep requesting things, but a greater than or equal might be a nice...
berg.matt
Offline Send Email
Apr 30, 2008
7:18 pm
11
Matt, Yeah, I thought about doing that. I guess I was afraid it would add to much complication. My theory was that if someone needed to do it they could also...
tacoman_cool
Offline Send Email
Apr 30, 2008
8:19 pm
12
... This looks neat! Any chance you'd be willing to post the code so I can see how you've made it? (Apologies if you've seen this message twice before... I...
wyzewoman99
Offline
May 3, 2008
1:18 pm
13
You can view source to see the code. It is all inline JavaScript and there are some comments to show how it works. The DOM API I'm using is the 16 line...
tacoman_cool
Offline Send Email
May 3, 2008
7:09 pm
14
... Oh, thanks. I had tried view source but apparently didn't scroll down far enough! Kendra...
wyzewoman99
Offline
May 3, 2008
7:10 pm
15
Hi All, TaffyDB is amazing, but i have a problem that seems not to be possible in Taffy. I would like to do "relational"-queries on subobjects. An example: i...
kioopi
Offline
May 8, 2008
2:04 pm
16
Hi kioopi, You're write. There isn't a way to do that currently. I've been thinking along those lines though and came up with the idea of some kind of "has"...
tacoman_cool
Offline Send Email
May 8, 2008
3:43 pm
17
TaffyDB is in use on CinemaNow (http://www.cinemanow.com/) on their My Movies page. Pretty cool to see another high traffic site start using it....
tacoman_cool
Offline Send Email
May 8, 2008
4:07 pm
18
Hi everyone, I've spent some time over the last couple of weeks trying to test and add indexes into Taffy DB. JavaScript is not designed for this type of ...
tacoman_cool
Offline Send Email
Jun 2, 2008
7:19 pm
19
... Hi Ian, I'm new to Taffy, but what attracted me to it was that is a small but powerful application and it is not intended to be a real SQL type ...
madcitymm
Offline Send Email
Jun 2, 2008
10:07 pm
20
After executing a find, I have my list of indexes. How do I use those indexes to extract the contents? Seems silly, but there is only one example, the...
madcitymm
Offline Send Email
Jun 4, 2008
4:13 am
21
Hey Marty, You've got a couple of options. By passing in an array to forEach it will call your function for each entry in that array. You can also pass in an...
tacoman_cool
Offline Send Email
Jun 4, 2008
4:48 am
22
This guy gets it: http://www.ajaxwith.com/Taffy-DB-for-Faster-Data-Processing.html Nothing useful, but just a good description of what Taffy DB is and why it...
tacoman_cool
Offline Send Email
Jun 5, 2008
9:38 pm
23
I would also vote for NO on indexes. I think keeping it lightweight is one of the real nice features of Taffy. Though you could possibly add extensions to...
berg.matt
Offline Send Email
Jun 11, 2008
12:18 am
24
I have been curious about what you recommend as far as using Taffy when it relates to Row/Index ids. Here is example of what I would like to do. Output all of...
berg.matt
Offline Send Email
Jun 11, 2008
12:27 am
25
Hi Matt, I faced the same issue. With a bit of help from Ian, here's what worked for me: I'll have my taffy driven site up in the next couple of days and...
madcitymm
Offline Send Email
Jun 11, 2008
2:27 am
26
Hey Matt, Marty may have already answered your question but I thought I'd throw in my two cents. With the next version of Taffy I'm adding in some better...
tacoman_cool
Offline Send Email
Jun 11, 2008
3:30 am
27
Hi Ian, Returning the index in the foreach will be a great addition. In my application the foreach is always traversing a subset of the db and having the...
madcitymm
Offline Send Email
Jun 11, 2008
1:57 pm
28
Thanks Marty and Ian for your help. I think including the index in the forEach is exactly what I was looking for, but if I am looping through the whole...
berg.matt
Offline Send Email
Jun 12, 2008
6:27 am
29
Matt, Yes, first is the preferred method for accessing one record. On paper it will be a little slower than array[arrayIndex] since it is designed to take an...
tacoman_cool
Offline Send Email
Jun 12, 2008
3:22 pm
30
I have a column in my TAFFY DB that has a bunch of string date values such as "2008-07-01", "2008-08-01", etc. Using the orderBy, those values sort fine. The...
berg.matt
Offline Send Email
Jun 18, 2008
3:19 pm
Messages 1 - 30 of 201   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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