I wish I could show you the code, but it's against company policy.
But I have some code that is accessing an sqlite database.
I am the only one accessing it right now.
But I have some session data.
session.equipment (Holds specific data pulled from xml and turned into
a dictionary. for example "a123":"2"  This data never changes unless
you make a specific request for it, which is very rare, or your
session times out.
With this data I grab data from the dictionary and with selections
made by the user, the solutions are then marked at "true".  This
information is put into a variable called session.issues with the
following data.
session.issues = [["a123",False, 2],["a1234",False, 2]]
session.solved = [["a123",True, 2],["a1234",False, 2]]
Here's were things get weird.
When I request a change, most of the data looks fine.  But then, I
start getting data like.
session.solved = [["a123",True, "Customer Name"],["Ronald
Jankees",False, 2]]
That data is NOT in the session.solved or session.issues.  they are in
session.equipment, but how the heck does it get there even if my def
issues_left() function doesn't even have the mentioning of
session.equipment in it!
Very weird.
Any ideas?  I wonder if there is some "memory drift" for need of a
better word in the framework.
This happens at totally random times, it will even work for days and
then the next day I work on it and it happens almost every time.
Regards,
Jason Brower
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to