Hello,

I'm trying tot connect to my informix SE database using the spring mvc method i found on the internet. But when I try to connect it gives an error which says:

org.springframework.web.util.NestedServletExceptio n: Request processing failed; nested exception is org.springframework.transaction.CannotCreateTransa ctionException: Could not open JDBC Connection for transaction; nested exception is java.sql.SQLException: Transactions not supported
org.springframework.web.servlet.FrameworkServlet.p rocessRequest(FrameworkServlet.java:488)
org.springframework.web.servlet.FrameworkServlet.d oGet(FrameworkServlet.java:431)
javax.servlet.http.HttpServlet.service(HttpServlet .java:621)
javax.servlet.http.HttpServlet.service(HttpServlet .java:722)

I found out that i have to enable logging inside the database.
The issue is that i have to connect to a live database, so i can't shut it down to enable logging.

Is there a workaround to make it possible to use the database without using Transaction?

greetings,

Diep