Thanks Massimo. Please let me know if you need more help in debugging it
On Friday, May 11, 2012 12:40:35 AM UTC+1, Massimo Di Pierro wrote:
>
> Now I understand better where all these problems come from. I shall fix it
> tonight.
>
> On Thursday, 10 May 2012 18:02:24 UTC-5, Francisco Costa wrote:
>>
>> i didn't understand your question..
>> This is the complete code
>>
>> import sys
>> import time
>> from gluon.dal import DAL, Field
>> mongo = DAL('mongodb://localhost:27017/sapo')
>> mongo.define_table('user',
>> Field('name', 'text'),
>> Field('age', 'integer'),
>> Field('city', 'string')
>> )
>>
>> def insert_users():
>> mongo.user.insert(name='John', age=66, city='Toronto')
>> mongo.user.insert(name='Mark', age=43, city='Boston')
>> mongo.user.insert(name='Tom', age=43, city='Detroit')
>> mongo.user.insert(name='Jim', age=18, city='Detroit')
>> mongo.user.insert(name='Jack', age=18)
>> mongo.user.insert(name='Eric', city='Boston')
>> return 'users in database'
>>
>> def find_users():
>> users = mongo(mongo.user.age==18).select()
>> return dict(users=users)
>>
>>