Skip to content

Tag: jdbc

Getting the SQL Server Connection Exception

I am getting below connection exception, when trying to connect to SQL Server using JDBC. Can someone please help, with this issue? I am using sqljdbc4.jar file to connect to SQL Server Code is as below This is the exception. Nov 14, 2020 8:33:01 PM com.microsoft.sqlserver.jdbc.TDSChannel enableSSL INFO: java…

How close possibility to add new data in H2?

I have a problem. After adding some data to database, I need to set read-only mode for whole DB. What is the easiest way to do that using h2 embedded DB with driver manager (jdbc)? Answer You can open the whole database in read-only mode by appending ;ACCESS_MODE_DATA=r to the JDBC URL (“jdbc:h2:”…

setReadOnly not working on PostgreSQL Connection

I have a problem setting a read-only connection with a PostgreSQL database using JDBC. I’m creating an application which loads queries to execute from a file, and I want to execute only SELECT (read-only) queries. Setting permissions on users who will run the application is not an option, so setting per…

JDBC4 syntax error, but MySQL accepts the query

I’ve tried running the following query with JDBC4, which leads to a syntax error: Strangely enough, when I run the query via mysql (on the same database server), the query is accepted and run. The error message is even more confusing, as there is no closing ) on line 1. The server is running MySQL 5.1. …