Hi Saurabh I am not getting the "put some hard code value to database" exactly.
Do you mean, you wish to execute some "INSERT INTO xxx" sort of queries, instead of adding things through UI? AFAIK, GAE follows NoSQL funda and so you have to write a Java / Python code that creates and saves (puts) the entities that you want. To answer "which file stores data": If you are talking about the local development server in Windows, the DB file is %TEMP%\dev_appserver.datastore. eg: C:\Users\<currentuser>\AppData\Local\Temp\dev_appserver.datastore But it will be in binary format (probably SQLite3) and used only in local machine and not uploaded to Google servers. Thanks Jagan On Sep 13, 10:04 pm, Saurabh Saxena <[email protected]> wrote: > Dear All, > > I wanted to put some hard code value to my database which later can be used > in application like admin user name/password.I am using JDO/JPA for > datastore. > > Could anybody let me know which file stores data in Google app engine (is it > local_db.bin) and where i can make changes to put hard code values. > > Regards, > Saurabh -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" 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/google-appengine-java?hl=en.
