I’m developing a REST google app engine application.
I want to know if it’s possible to create a database schema dynamically.
What I mean is:
For example some client sends me and xml file with desired database schema(on a POST function).
After reading the xml file I want to create a database schema on google app engine datastore based on that xml.
Is it possible to create a desired schema even though I’m not creating a new java class?
Thank you!
You can use Java Low-Level Datastore API to work with the datastore, it does’t require a predefined schema.