From 4e9dd952966b600951f05ab2913b5b97936d42ba Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 2 Feb 1998 13:17:01 +0000 Subject: From: Peter T Mount [This is a repost - it supercedes the previous one. It fixes the patch so it doesn't bread aix port, plus there's a file missing out of the original post because difforig doesn't pick up new files. It's now attached. peter] This patch brings the JDBC driver up to the current protocol spec. Basically, the backend now tells the driver what authentication scheme to use. The patch also fixes a performance problem with large objects. In the buffer manager, each fastpath call was sending multiple Notifications to the backend (sometimes more data in the form of notifications were being sent than blob data!). --- src/interfaces/jdbc/Makefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/interfaces/jdbc/Makefile') diff --git a/src/interfaces/jdbc/Makefile b/src/interfaces/jdbc/Makefile index 1065dcec4fb..44a9ca32903 100644 --- a/src/interfaces/jdbc/Makefile +++ b/src/interfaces/jdbc/Makefile @@ -4,7 +4,7 @@ # Makefile for Java JDBC interface # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.4 1998/01/13 02:19:10 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.5 1998/02/02 13:16:38 scrappy Exp $ # #------------------------------------------------------------------------- @@ -33,8 +33,9 @@ all: postgresql.jar @echo @echo Then either add -Djdbc.drivers=postgresql.Driver to the @echo commandline when running your application, or edit the - @echo "properties file (~/.hotjava/properties under unix), and" - @echo add a line containing jdbc.drivers=postgresql.Driver + @echo "properties file for your application (~/.hotjava/properties" + @echo "under unix for HotJava), and add a line containing" + @echo jdbc.drivers=postgresql.Driver @echo @echo More details are in the README file. @echo ------------------------------------------------------------ @@ -76,8 +77,12 @@ OBJS= postgresql/CallableStatement.class \ postgresql/util/PGobject.class \ postgresql/util/PGtokenizer.class +# If you have problems with the first line, try the second one. +# This is needed when compiling under Solaris, as the solaris sh doesn't +# recognise $( ) postgresql.jar: $(OBJS) - $(JAR) -c0vf $@ $$($(FIND) postgresql -name "*.class" -print) + $(JAR) -c0f $@ $$($(FIND) postgresql -name "*.class" -print) +# $(JAR) -c0f $@ `$(FIND) postgresql -name "*.class" -print` # This rule removes any temporary and compiled files from the source tree. clean: -- cgit v1.2.3