Your tables do not not show up until data is inserted because GAE does
not create any tables, ever.  It uses BigTable which stores your app's
data and everyone else's app's data in 1 giant shared distributed
table.  There is only one table in appengine and it is BigTable, thus
the name.

When you store a 'comment' with id=5, the primary key actually
resembles something like this: 'your_app:comment:5' and when you
query, BigTable finds the first result that matches your_app,
'comment', and id=5 and returns that result.

So no table is ever created as it would be in a relation database.

Robin

On Oct 28, 4:30 pm, Leandro - ProfessionalIT <[email protected]>
wrote:
> Massimo,
>
>    You are right !, I need insert a data to create the tables. What I
> did was create an application called init and upload to the GAE, then
> I went to see in the "Data View" and the tables were not shown. I
> register a user and all tables show in Data View.
>
>    Sorry by my dummie question.
>
> -- Leandro.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to