Skip to content

Tag: jdbc

Error while querying tables using hibernate

I am trying to query a table called student in MySQL. This is the structure: Here is the java code which I use to query: This is the error message: Here is the image of the referenced libraries: Insertion into table is working correctly. Only querying isn’t. What is the error here? Please comment if ext…

Result set is empty but query works in Postgres

I’m trying to get some results from Postgres into my Java application. As of now, I always used PreparedStatements with ResultSets to get data from my database in memory. But today my code refuses to work, although I use the same code as usual. Here is my piece of code: Here is the log: The ArrayList ex…

List of Java Connection (JDBC) non-db specific properties?

Where can I find a good (maybe official) source (list) of non-db specific properties (keys)? Answer See the DriverManager.getConnection(String url, Properties info) Javadoc: info – a list of arbitrary string tag/value pairs as connection arguments; normally at least a “user” and “passw…