-
Notifications
You must be signed in to change notification settings - Fork 233
JPQL
Devender Yadav edited this page Jan 6, 2016
·
7 revisions
Below table lists different JPA query language constructs and whether they are supported for given datastore in Kundera.
JPA-QL Clause | Cassandra | HBase | MongoDB | Neo4j | Redis | OracleNoSQL | RDBMS | Couchdb |
SELECT | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
UPDATE | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
DELETE | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
ORDER BY | X | X | ✔ | X | X | X | ✔ | X |
AND | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
OR | X (Yes with Lucene) | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | X |
BETWEEN | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
LIKE | X (Yes with Lucene) | ✔ | ✔ | ✔ | X | X | ✔ | X |
IN | X | X | X | X | X | X | X | X |
= | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
> | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
< | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | X |
>= | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
<= | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
- Kundera supports all above query operations/ clauses on primary key attributes (@Id) and column attributes (@Column).
- Queries that contain combination for primary key attribute and columns are supported.
Examples on using JPQL can be found here.
-
Datastores Supported
- Releases
-
Architecture
-
Concepts
-
Getting Started in 5 minutes
-
Features
- Object Mapper
- Polyglot Persistence
- Queries Support
- JPQL (JPA Query Language)
- Native Queries
- Batch insert update
- Schema Generation
- Primary Key Auto generation
- Transaction Management
- REST Based Access
- Geospatial Persistence and Queries
- Graph Database Support
-
Composite Keys
-
No hard annotation for schema
-
Support for Mapped superclass
-
Object to NoSQL Data Mapping
-
Cassandra's User Defined Types and Indexes on Collections
-
Support for aggregation
- Scalar Queries over Cassandra
- Connection pooling using Kundera Cassandra
- Configuration
-
Kundera with Couchdb
-
Kundera with Elasticsearch
-
Kundera with HBase
-
Kundera with Kudu
-
Kundera with RethinkDB
-
Kundera with MongoDB
-
Kundera with OracleNoSQL
-
Kundera with Redis
-
Kundera with Spark
-
Extend Kundera
- Sample Codes and Examples
-
Blogs and Articles
-
Tutorials
* Kundera with Openshift
* Kundera with Play Framework
* Kundera with GWT
* Kundera with JBoss
* Kundera with Spring
-
Performance
-
Troubleshooting
-
FAQ
- Production deployments
- Feedback