How to create a database table in Google App Engine

How to create a database table in Google App Engine

+3
source share
4 answers

No. You create Entities of different types. Datastore is not a relational database [*].

If you want to imagine that GAE creates one “table” for each type, the “columns” of this “table” are entity properties, then you can do this. But I do not think this helps.

[*] I do not know if it meets a certain technical definition, but, of course, does not manage SQL-based databases.

+8
source

According to http://code.google.com/appengine/docs/python/datastore/

App Engine Datastore - - :

  •   Python Datastore API SQL- , GQL.
+4

, , put() "" ( , ) " ". . Google , RDBMS

+2

In simple words, I would say that with Google BigTable you do not need to create your own tables, because there are already six large tables ready to store everything you want .

0
source

Source: https://habr.com/ru/post/1742224/


All Articles