i'm not sure about this, i think the password field type is made by string 
field type, checked on sql.log in databases folders. if you want to have 
the cryted value one, i think you can achieve it using something like :
e.g.
db.auth_user.bulk_insert([{"first_name" : "a", "last_name" : "a", 
   "email" : "a...@a.com", "username" : "a", 
   *"password" : db.auth_user.password.validate("a")[0]* }, 
  {"first_name" : "b", "last_name" : "b", 
   "email" : "b...@b.com", "username" : "b", 
   *"password" : db.auth_user.password.validate("b")[0]* } ] )

best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to