This is a means of executing functions imbeded in the org.postgresql backend from within a java application.
It is based around the file src/interfaces/libpq/fe-exec.c
337338339340341342343344
* @exception SQLException by Fastpath when initialising for first time */ public Fastpath getFastpathAPI() throws SQLException { if (fastpath == null) fastpath = new Fastpath(this); return fastpath; }
348349350351352353354355
352353354355356357358359
*/ public Fastpath getFastpathAPI() throws SQLException { checkClosed(); if (fastpath == null) fastpath = new Fastpath(this); return fastpath; }
477478479480481482483484
371372373374375376377378
374375376377378379380381