Does anyone have any good information besides Google App Engine documents provided by Google that provide a good overview for people with an MS SQL database to port their knowledge and use the Google App Engine datastore API effectively.
For example, if you have your own user table and message table
Where is the relationship between users and the message (associated with UserID), how will this structure be displayed in Google App Engine?
SELECT * FROM Users INNER JOIN Message ON Users.ID = Message.UserID
python sql google-app-engine gql
Timleung
source share