JDBC_FDW icon indicating copy to clipboard operation
JDBC_FDW copied to clipboard

FDW that wraps JDBC for PostgreSQL.It can be used to connect and fetch data from any data source that supports JDBC

Results 18 JDBC_FDW issues
Sort by recently updated
recently updated
newest added

make install USE_PGXS=1 clang -I/usr/local/Cellar/ossp-uuid/1.6.2_1/include/ossp -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -arch x86_64 -bundle -multiply_defined suppress -o jdbc_fdw.so jdbc_fdw.o -L/usr/local/Cellar/postgresql/9.3.5_1/lib -L/usr/local/Cellar/ossp-uuid/1.6.2_1/lib -Wl,-dead_strip_dylibs -arch x86_64 -I/System/Library/Frameworks/JavaVM.framework/Headers -L/System/Library/Frameworks/JavaVM.framework/Libraries -ljvm...

Thank you very much for jdbc_fdw. Can you please add units to paragraphs like > querytimeout : The time after which a query will be terminated automatically. > This can...

Atri, PostgreSQL 9.3 FDW API provides great new features, like push-down matches, writeable table and performance issues (in an overall pov). Is there any activity plan to migrate JDBC_FDW to...

-- foreign database CREATE TABLE foreign_table (id BIGSERIAL); -- local database CREATE TABLE local_table (id BIGSERIAL, remote_id BIGSERIAL); CREATE FOREIGN TABLE local_foreign_table ( id BIGINT ) SERVER aserver OPTIONS (...

As subject http://www.postgresql.org/docs/9.3/static/fdwhandler.html

I have been trying to get jdbc_fdw to work on a 64 bit Windows system to no avail. First I had issues trying to install it using windows sdk getting...