XAP66 == "XAP9NET" || XAP66 == "XAP9" || XAP66 == "XAP9NET")

EDG Tutorial B - Doc Summary - How Do I Query?

Search XAP 6.6
Searching XAP 6.6 Documentation
Browse XAP 6.6
Offline Documentation

Download latest offline documentation in HTML format:
xap-6.6.1-documentation.zip (20.6MB)

                                                              

Before you begin, you can take a look at this section, which summarizes the different query methods and shows how to index fields to speed up query based operations. If you're already familiar with the SQLQuery API, you can jump ahead to Writing the code. All code is documented inside each example as well.

See use of Query using Scripting and Query using GSIterator inside the tutorial.

For more detailed information, see SQLQuery.

We use the following Person POJO:

public class Person{

   private Integer age;
   private Integer height;
   private String name;
   .
   .
   Constructors/Setters/Getters
}

SQLQuery is the primary API when accessing the space.

IMPORTANT: This is an old version of GigaSpaces XAP. Click here for the latest version.

Labels