diff options
Diffstat (limited to 'src/interfaces/jdbc/example/blobtest.java')
-rw-r--r-- | src/interfaces/jdbc/example/blobtest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/example/blobtest.java b/src/interfaces/jdbc/example/blobtest.java index 271026250dd..d517d267b75 100644 --- a/src/interfaces/jdbc/example/blobtest.java +++ b/src/interfaces/jdbc/example/blobtest.java @@ -76,7 +76,7 @@ public class blobtest // objects, however the unique methods available to postgresql makes // things a little easier. System.out.println("Gaining access to large object api"); - lobj = ((org.postgresql.Connection)db).getLargeObjectAPI(); + lobj = ((org.postgresql.PGConnection)db).getLargeObjectAPI(); int oid = ownapi_test1(); ownapi_test2(oid); |