> Please note that Ignite JDBC URL contains cache name as database schema > name. If you want execute queries for different caches you should configure > different data sources or use cross cache queries. >
Andrey, I am not sure what different data sources you are describing here. The cache name in the JDBC connection is only to specify the default cache for query access. This only means that classes belonging to other caches will have to be prefixed in the queries by the cache name. For example, in the following query, we have to specify "orgsCache" name explicitly, because it was not specified in the initial JDBC connection string. ------- select * from Person p, "orgsCache".Organization o where p.orgId = o.id and ... ------- D.