hi,

I am using simple code to copy my database table data to another table

code used is

 users = db.GqlQuery("SELECT * FROM UserProfile")

    for cur_user in users:
      up=UserProfile1()
      up.user=cur_user.user
      up.fname=cur_user.name
      up.lname=cur_user.lname
      up.completed=bool()
      up.put()

my first table has 100 records only

but whenever i start back up process i always get timeout error.

Any idea how can i do this...


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to