Ourapplication uses Spring boot + Hibernate and Sybase. It's getting some errors when running the below query. public interface ClientDao extends BaseRepository { List findByShortNameIn(List shortnames); } 2016-03-10 17:41:32,809 WARN [qtp358] SqlExceptionHelper - SQL Error: 7738, SQLState: null 2016-03-10 17:41:32,809 ERROR [qtp358115395-22
orghibernate.exception.JDBCConnectionException: Could not open connection exception in MySQL 0 Spring MVC JPA exception org.hibernate.exception.SQLGrammarException Hibernate as an ORM solution, effectively "sits between" the Java application data access layer and the Relational Database, as can be seen in the diagram above. The Java application makes use of the Hibernate APIs to load, store, query, etc. its domain data. Here we will introduce the essential Hibernate APIs.Generallythis problem can appear, when your query preparation went wrong i.e, when you are constructing the query programatically by concatenating strings of wrong datatypes (or) Database is down (or) if query failed execution with some exception then we used to get GenericJDBCException. First try to check your connection later verify whether