Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

now I add some entity in datastore using Go language, I can query all entity, but I want get a entity by key, how to get entity'key and query by key like this: select * from Blog where key=?

c := appengine.NewContext(r)
g := Blog{
Title: r.FormValue("title"),
    Content: r.FormValue("content"),
}
_, err := datastore.Put(c, datastore.NewIncompleteKey(c, "Blog", nil), &g)

Thanks

share|improve this question

1 Answer

See the Datastore documentation for the Go Runtime:

var b Blog
err := datastore.Get(c, key, &b)
share|improve this answer
thank you ,thank you – linuz.ly Jun 27 '12 at 6:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.