RE: Does Merge statement (DML) work with JDBC client driver

2018-03-09 Thread vkulichenko
Naveen, Ignite provides out of the box implementation for RDBMS. The easiest way to integration would be to use Web Console to generate all required POJO classes and configurations: https://apacheignite-tools.readme.io/docs/automatic-rdbms-integration -Val -- Sent from:

RE: Does Merge statement (DML) work with JDBC client driver

2018-03-09 Thread Naveen
Hi Stan I do not want to Oracle with native persistence, I only wanted to use Oracle persistent layer. Are you sure, we need to implement cacheStore for each table we have in the cluster ? If that is the case, we need to have separate code base for Oracle as persistence layer and another

RE: Does Merge statement (DML) work with JDBC client driver

2018-03-07 Thread Stanislav Lukyanov
://apacheignite.readme.io/docs/3rd-party-store. Thanks, Stan From: Naveen Sent: 7 марта 2018 г. 15:20 To: user@ignite.apache.org Subject: RE: Does Merge statement (DML) work with JDBC client driver Hi Stan Currently I am using JDBC thin driver to connect to Ignite cluster for both read/write. Below is the config xml

RE: Does Merge statement (DML) work with JDBC client driver

2018-03-07 Thread Stanislav Lukyanov
on which persistence mechanism is enabled. For the reference on the SQL syntax supported by Ignite please see https://apacheignite-sql.readme.io/docs/dml. Thanks, Stan From: Naveen Sent: 7 марта 2018 г. 9:11 To: user@ignite.apache.org Subject: Does Merge statement (DML) work with JDBC client driver Hi

Does Merge statement (DML) work with JDBC client driver

2018-03-06 Thread Naveen
Hi We are using Ignite 2.3 We would like to have 2 Ignite clusters running - one with Ignite native persistence and second with Oracle database as persistent layer. So keeping this in mind, we would like to the build our code base which should work for both the clusters. I have read that