我需要使用 postgresql API 访问大对象。这样做是这样的:
PGConnection pgConn=(PGConnection)c
LargeObjectManager lobj =pgConn.getLargeObjectAPI();
LargeObject obj = lobj.open(imageOid, LargeObjectManager.READ);
InputStram is=obj.getInputStream();
我需要在使用 Spring 的 JdbcTemplate 时从我的 DAO 运行此代码。如何访问我正在使用的连接?