@phildunlap said:
I don't understand what you're trying to do well enough to say if something is or isn't possible.
Let me try it one more time if I can be more clear this time.
I have a database which keeps growing and growing when information is being added into that particular database. Say I'm trying to find values with TestForceMaxValueInEnd
from the database. The values are being added every 50 or so rows.
I can then fetch the values with Mango by using column based query but the only value being fetched is the first row. (From the document: "It is important to recognize that that only the first row of the result set is used in a column-based query.")
Now if I try to fetch the next value from the same database I am not able to do so without somehow pointing out which row was the last one fetched. If I could insert the row id into the database to another table (say rowid
) I could then use the original select sentence with a when
statement (select xxxxx when id
>MaxValueInEndID
in table rowid).
Someone pointed out that maybe I should use javascript to run the same command (first select, then update or delete whole row) but is that possible if the Mango prevents the SQL database alteration?