1

Hi I want to use hikariCP with snappy data. Don't want to involve GemFire in between. How can be direct implementation possible with snappy data.

I tried com.pivotal.gemfirexd.jdbc.ClientDriver which is working, but com.pivotal.snappydata.jdbc.ClientDriver os not working.

Rick
  • 13
  • 2
  • Welcome to StackOverFlow. Please go through [how to ask](https://stackoverflow.com/help/asking) , make your question [Minimal, Complete, Verifiable Example](https://stackoverflow.com/help/mcve) for coding question which have to can be reproduced to help you.use formatting tools within Stackoverflow post form to make your post more readable. – Morse May 07 '18 at 21:27

1 Answers1

1

Not sure which version of SnappyData you are using. But, the client JDBC driver class is io.snappydata.jdbc.ClientDriver. See here. You can download the driver from here.

Also, not sure I follow "Don't want to involve GemFire in between". SnappyData only uses components from GemFire (for things like distributed membership, etc) and this use is completely hidden.

jagsr
  • 535
  • 2
  • 6
  • snappydata-store-client is not able to connect getting "Container has been closed or has moved from XXXX", But when I try with gemfirexd-client 2.0-BETA its working. – Rick May 08 '18 at 21:35
  • Interesting. Can you shed some more light on your client app? You are using Spring data to access ? thx. – jagsr May 09 '18 at 22:59
  • No, just for POC purpose, I am using plain POJO. – Rick May 14 '18 at 21:07