Skip to content
Advertisement

Connecting and testing a JDBC driver from Python

I’m trying to do some testing on our JDBC driver using Python.

Initially figuring out JPype, I eventually managed to connect the driver and execute select queries like so (reproducing a generalized snippet):

JavaScript

However, I’ve failed to to batch inserts, which is what I wanted to test. Even when executeBatch() returned a jpype int[], which should indicate a successful insert, the table was not updated.

I then decided to try out py4j.

My plight – I’m having a hard time figuring out how to do the same thing as above. It is said py4j does not start a JVM on its own, and that the Java code needs to be prearranged with a GatewayServer(), so I’m not sure it’s even feasible.

On the other hand, there’s a library named py4jdbc that does just that.

I tinkered through the dbapi.py code but didn’t quite understand the flow, and am pretty much jammed.

If anyone understands how to load a JDBC driver from a .jar file with py4j and can point me in the right direction, I’d be much grateful.

Advertisement

Answer

In py4j, with your respective JDBC uri:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement