if using java, try
Query query = pm.newQuery(Data.class); // where Data is your entity class.
query.setResult("key"); // key, id, encodedStr or whatever you used as
Primary Key
List<Key> list = query.execute();
int size = list.size();
On Sun, Oct 4, 2009 at 7:50 PM, Jaap <[email protected]> wrote:
>
> I've got a database uploaded to the datastore of around 100,000
> records.
>
> Which GQL statement can I use to obtain the number of rows my database
> has
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" 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?hl=en
-~----------~----~----~----~------~----~------~--~---