Exporting data from App Engine via Objectify in the form of SQL statements to build a SQLite database?

Having your App Engine app send SQL statements to your Android app probably isn't a good idea. It requires your App Engine app to have unnecessary knowledge about the inner workings of your Android app; it forces your Android app to continue using an SQL database with the specified schema for the indefinite future, and it makes it difficult or impossible to write another client for another platform that uses a different datastore There's also potential security implications - if your App Engine app was compromised, or you communicate over an insecure connection, an attacker could make arbitrary changes to the Android app's datastore Instead, have your App Engine app output data in a common format such as JSON or XML, then have your Android app read the data and perform operations such as inserting data into the datastore based on it.

Having your App Engine app send SQL statements to your Android app probably isn't a good idea. It requires your App Engine app to have unnecessary knowledge about the inner workings of your Android app; it forces your Android app to continue using an SQL database with the specified schema for the indefinite future, and it makes it difficult or impossible to write another client for another platform that uses a different datastore. There's also potential security implications - if your App Engine app was compromised, or you communicate over an insecure connection, an attacker could make arbitrary changes to the Android app's datastore.

Instead, have your App Engine app output data in a common format such as JSON or XML, then have your Android app read the data and perform operations such as inserting data into the datastore based on it.

The DB is just a file, you need to get the path to it, and then post it to App Engine. Depending on the size of the DB, you might need to use the Blobstore, there is a limit to the size you can store in a regular entity. You mean uploading to GAE Blobstore?

String path = getDatabasePath("myDB. Db").getAbsolutePath() + "/myDB. Final Intent emailIntent = new Intent(android.content.Intent.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions