Hi Team,
We are trying to call StoredProcedure from Scala in memsql using mariadb java connector. however we are getting the below exception.
Caused by: java.sql.SQLException: Feature ‘Audit logging with binary protocol’ is not supported by MemSQL.
we tried to pass the property useServerPrepStmts=false in connection string, still the same issue.
jdbc:mariadb://localhost:3307/testdb?useServerPrepStmts=false
val callableStatement = connection.prepareCall("{call test_sp()}")
callableStatement.execute().
kindly suggest me on the issue.
THanks.