summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2001-09-17Rename JDK_HOME to JDK_BASE. JDK_HOME is already used as a tunable makejlam1-7/+7
variable in pkgsrc, and shouldn't be used as a local variable by packages.
2001-09-14Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.jlam1-13/+16
2001-09-14Add buildlink.mk file for use by other package Makefiles.jlam1-0/+44
2001-09-09Update to the version of the PostgreSQL JDBC support which comes withjwise5-52/+30
postgresql-7.1.2. Most visible changes are that the authors now use jakarta-ant to build this package, and that the authors have removed support for building javadoc documentation for this package. This latter is rather unfortunate, and may need to be addressed within the package. Also, at some point this week, I will try to rework this package to use the postgresql Makefile.common, as the original package now fits a little more closely into the postgresql build hierarchy. This package also adds one to the number of jakarta-ant using packages in pkgsrc. At some point soonish I will code up a USE_ANT flag in bsd.pkg.mk to cut out the duplication of effort... Other changes include: Tue Mar 06 12:05:00 GMT 2001 peter@retep.org.uk - Removed org.postgresql.xa.Test from the JDBC EE driver as it's an old test class and prevented it from compiling. Fri Mar 02 10:00:00 GMT 2001 peter@retep.org.uk - Fixed build.xml so that PGclob is not built in the JDBC1.2 driver Fri Feb 17 18:25:00 GMT 2001 peter@retep.org.uk - Removed the last deprecation warnings from the Java2 driver. Now only the old examples give deprecation warnings. - Added a new class into core that (JDK1.3+) ensures all connections are closed when the VM terminates. Fri Feb 17 15:11:00 GMT 2001 peter@retep.org.uk - Reduced the object overhead in PreparedStatement by reusing the same StringBuffer object throughout. Similarly SimpleDateStamp's are alse reused in a thread save manner. - Implemented in PreparedStatement: setNull(), setDate/Time/Timestamp using Calendar, setBlob(), setCharacterStream() - Clob's are now implemented in ResultSet & PreparedStatement! - Implemented a lot of DatabaseMetaData & ResultSetMetaData methods. We have about 18 unimplemented methods left in JDBC2 at the current time. Web Feb 14 17:29:00 GMT 2001 peter@retep.org.uk - Fixed bug in LargeObject & BlobOutputStream where the stream's output was not flushed when either the stream or the blob were closed. - Fixed PreparedStatement.setBinaryStream() where it ignored the length Tue Feb 13 16:33:00 GMT 2001 peter@retep.org.uk - More TestCases implemented. Refined the test suite api's. - Removed need for SimpleDateFormat in ResultSet.getDate() improving performance. - Rewrote ResultSet.getTime() so that it uses JDK api's better. Tue Feb 13 10:25:00 GMT 2001 peter@retep.org.uk - Added MiscTest to hold reported problems from users. - Fixed PGMoney. - JBuilder4/JDBCExplorer now works with Money fields. Patched Field & ResultSet (lots of methods) for this one. Also changed cash/money to return type DOUBLE not DECIMAL. This broke JBuilder as zero scale BigDecimal's can't have decimal places! - When a Statement is reused, the previous ResultSet is now closed. - Removed deprecated call in ResultSet.getTime() Thu Feb 08 18:53:00 GMT 2001 peter@retep.org.uk - Changed a couple of settings in DatabaseMetaData where 7.1 now supports those features - Implemented the DatabaseMetaData TestCase. Wed Feb 07 18:06:00 GMT 2001 peter@retep.org.uk - Added comment to Connection.isClosed() explaining why we deviate from the JDBC2 specification. - Fixed bug where the Isolation Level is lost while in autocommit mode. - Fixed bug where several calls to getTransactionIsolationLevel() returned the first call's result. Tue Feb 06 19:00:00 GMT 2001 peter@retep.org.uk - Completed first two TestCase's for the test suite. JUnit is now recognised by ant. Wed Jan 31 08:46:00 GMT 2001 peter@retep.org.uk - Some minor additions to Statement to make our own extensions more portable. - Statement.close() will now call ResultSet.close() rather than just dissasociating with it. Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.uk - Fixed bug where Statement.setMaxRows() was a global setting. Now limited to just itself. - Changed LargeObject.read(byte[],int,int) to return the actual number of bytes read (used to be void). - LargeObject now supports InputStream's! - PreparedStatement.setBinaryStream() now works! - ResultSet.getBinaryStream() now returns an InputStream that doesn't copy the blob into memory first! - Connection.isClosed() now tests to see if the connection is still alive rather than if it thinks it's alive. Thu Jan 25 09:11:00 GMT 2001 peter@retep.org.uk - Added an alternative constructor to PGSQLException so that debugging some more osteric bugs is easier. If only 1 arg is supplied and it's of type Exception, then that Exception's stacktrace is now included. Wed Jan 24 09:18:00 GMT 2001 peter@retep.org.uk - Removed the 8k limit by setting it to 64k Fri Jan 19 08:47:00 GMT 2001 peter@retep.org.uk - Applied patch submitted by John Schutz <schutz@austin.rr.com> that fixed a bug with ANT's SQL functions (not needed for building but nice to have fixed). Thu Jan 18 17:30:00 GMT 2001 peter@retep.org.uk - Added new error message into errors.properties "postgresql.notsensitive" This is used by jdbc2.ResultSet when a method is called that should fetch the current value of a row from the database refreshRow() for example. - These methods no longer throw the not implemented but the new noupdate error. This is in preparation for the Updateable ResultSet support which will overide these methods by extending the existing class to implement that functionality, but needed to show something other than notimplemented: moveToCurrentRow() moveToInsertRow() rowDeleted() rowInserted() all update*() methods, except those that took the column as a String as they were already implemented to convert the String to an int. - getFetchDirection() and setFetchDirection() now throws "postgresql.notimp" as we only support one direction. The CursorResultSet will overide this when its implemented. - Created a new class under jdbc2 UpdateableResultSet which extends ResultSet and overides the relevent update methods. This allows us to implement them easily at a later date. - In jdbc2.Connection, the following methods are now implemented: createStatement(type,concurrency); getTypeMap(); setTypeMap(Map); - The JDBC2 type mapping scheme almost complete, just needs SQLInput & SQLOutput to be implemented. - Removed some Statement methods that somehow appeared in Connection. - In jdbc2.Statement() getResultSetConcurrency() getResultSetType() setResultSetConcurrency() setResultSetType() - Finally removed the old 6.5.x driver. Thu Jan 18 12:24:00 GMT 2001 peter@retep.org.uk - These methods in org.postgresql.jdbc2.ResultSet are now implemented: getBigDecimal(int) ie: without a scale (why did this get missed?) getBlob(int) getCharacterStream(int) getConcurrency() getDate(int,Calendar) getFetchDirection() getFetchSize() getTime(int,Calendar) getTimestamp(int,Calendar) getType() NB: Where int represents the column name, the associated version taking a String were already implemented by calling the int version. - These methods no longer throw the not implemented but the new noupdate error. This is in preparation for the Updateable ResultSet support which will overide these methods by extending the existing class to implement that functionality, but needed to show something other than notimplemented: cancelRowUpdates() deleteRow() - Added new error message into errors.properties "postgresql.noupdate" This is used by jdbc2.ResultSet when an update method is called and the ResultSet is not updateable. A new method notUpdateable() has been added to that class to throw this exception, keeping the binary size down. - Added new error message into errors.properties "postgresql.psqlnotimp" This is used instead of unimplemented when it's a feature in the backend that is preventing this method from being implemented. - Removed getKeysetSize() as its not part of the ResultSet API Thu Jan 18 09:46:00 GMT 2001 peter@retep.org.uk - Applied modified patch from Richard Bullington-McGuire <rbulling@microstate.com>. I had to modify it as some of the code patched now exists in different classes, and some of it actually patched obsolete code. Wed Jan 17 10:19:00 GMT 2001 peter@retep.org.uk - Updated Implementation to include both ANT & JBuilder - Updated README to reflect the changes since 7.0 - Created jdbc.jpr file which allows JBuilder to be used to edit the source. JBuilder _CAN_NOT_ be used to compile. You must use ANT for that. It's only to allow JBuilders syntax checking to improve the drivers source. Refer to Implementation for more details Wed Dec 20 16:19:00 GMT 2000 peter@retep.org.uk - Finished build.xml and updated Driver.java.in and buildDriver to match how Makefile and ANT operate. Tue Dec 19 17:30:00 GMT 2000 peter@retep.org.uk - Finally created ant build.xml file Mon Nov 20 08:12:00 GMT 2000 peter@retep.org.uk - Encoding patch to Connection by wrobell@posexperts.com.pl Tue Oct 17 15:35:00 BST 2000 petermount@maidstone.gov.uk - Changed getTimestamp() again. This time Michael Stephenson's <mstephenson@tirin.openworld.co.uk> solution looked far better than the original solution put in June. Tue Oct 10 13:12:00 BST 2000 peter@retep.org.uk - DatabaseMetaData.supportsAlterTableWithDropColumn() as psql doesn't support dropping of individual columns - Merged in some last patches. Only 1 left, which may not be compatible with jdbc1 - Merged in my old retepsql project. Makefile now includes it. Mon Oct 02 12:30:00 BST 2000 peter@retep.org.uk - Merged in byte[] array allocation changes submitted by Gunnar R|nning <gunnar@candleweb.no> Mon Sep 25 14:22:00 BST 2000 peter@retep.org.uk - Removed the DriverClass kludge. Now the org.postgresql.Driver class is compiled from a template file, and now has both the connection class (ie jdbc1/jdbc2) and the current version's from Makefile.global Thu Jul 20 16:30:00 BST 2000 petermount@it.maidstone.gov.uk - Fixed DatabaseMetaData.getTableTypes()
2001-09-09Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:agc1-2/+3
WRKSRC= ${WRKDIR} This is much cleaner, much more indicative of what happens, and removes another of the negative definitions (NO_.* = value).
2001-09-07Update postgresql and packages built from postgresql sources to 7.1.3.jlam5-30/+20
Relevant changes from version 7.1.2 include: Remove unused WAL segements of large transactions Multiaction rule fix Pl/pgSQL memory allocation fix VACUUM buffer fix pg_dump fixes for GRANT/REVOKE/comments on views, user-defined types Fix subselects with DISTINCT ON or LIMIT Disable COPY TO/FROM a view
2001-09-05Alter dependencies so that perl>=5.6.1nb2 will satisfy the dependency forjlam2-4/+4
p5-CGI or p5-Data-Dumper.
2001-09-05Make this compile under NetBSD-1.4.x and other systems that don't come withrh2-7/+9
preinstalled libssl and libcrypto.
2001-08-29Use x11.buildlink.mk instead of USE_X11. Also convert hard-coded referencesjlam1-1/+2
to ${X11BASE} in the header and library search paths into references to ${LOCALBASE}/share/x11-links. These packages should now be strongly- buildlinked regardless of whether xpkgwedge is installed. Changes well-tested on NetBSD-1.5X/i386 with and without xpkgwedge and lightly-tested on NetBSD-1.5.1/alpha without xpkgwedge.
2001-08-27Use wildcard dependence on "autoconf" package.tron1-2/+2
2001-08-26Update automake to 1.4-p5 (1.5 is available)skrll1-2/+2
Include a bugfix for lisp_LISP independently discovered by me that has been pulled up to the automake-1-4 branch of automake cvs. Changes are: New in 1.4-p5: * Allow AM_PROG_LIBTOOL again. * Diagnose AC_CONFIG_HEADERS the same as AC_CONFIG_HEADER. * Display distributed file list correctly in usage message. * Allow numbers in macro names. * Bugfixes. New in 1.4-p4: * Deal with configure.ac as well as configure.in -- this time for real! * The version numbering system now allows three point version numbers, such as 1.4.4, without thinking they are alpha release numbers. New in 1.4-p3: * Deal with configure.ac as well as configure.in. * Don't complain if `version.texi' is included in multiple places. New in 1.4-p2: * Deal with AC_CONFIG_FILES from autoconf-2.50. * Improvements to f77 support. * DESTDIR now works for script targets. * distcheck-hook works correctly. New in 1.4-p1: * The version numbering system now allows fork identifiers (such as the p1 in this version of automake). * Cope gracefully with various versions of libtool which may or may not require ltconfig, ltcf-c.sh, ltcf-cxx.sh or ltcf-gcj.sh. * Bugfixes.
2001-08-25Fix dependency line, by Martti Kuparinen in pkg/13782.wiz1-2/+2
2001-08-23Use -L${BUILDLINK_DIR}/lib instead of -L${LOCALBASE}/lib.jlam2-4/+4
2001-08-23Honor CFLAGS and CC settings from the environment, complete the conversionjlam3-20/+24
to use buildlink.mk files, and truly mark as USE_BUILDLINK_ONLY.
2001-08-20Manually add LIBS+=${LIBGETOPT} to the package Makefile as it's no longerjlam2-2/+5
automatically added by libgetopt/buildlink.mk.
2001-08-16Fix Makefile.in to use $(INSTALL) rather than "install";dogcow2-6/+13
this can fail on zoularis if it finds /usr/sbin/install first.
2001-08-16Add and enable edbrh1-1/+2
2001-08-16Initial import of edb-1.0.2, the Enlightenment database abstraction layer.rh5-0/+75
2001-08-14Fix for xpkgwedge, and buildlink-ifyabs3-6/+11
2001-08-14grep isn't used anymore, so don't substitute for @GREP@ in the INSTALLjlam2-5/+5
files. Substitute for @ID@ instead of directly using 'id', and use the value of ${ID} already set in defs.*.mk.
2001-08-12Fix same problems with the user check:veego1-5/+5
- use 'id' instead of 'finger'. this is not a real problem, but it is enough and fixing the next problem makes it possible to use it. - grep -q doesn't work on solaris, so use a different way to suppress the output from the user check. - the return code check for the user was reversed.
2001-08-11Fix typo: installed include files are actually include/db3/db.h andrh1-3/+3
include/db3/db_cxx.h, not "db3.h" and "db3_cxx.h"
2001-08-10Update to 0.41. No changelog available.mjl2-5/+5
2001-08-10Update to 1.01mjl2-5/+5
- fixed core dump when trying to use a BYTEA value with a byte outside 0..127
2001-08-10Update to 1.19mjl2-5/+5
Made fetchall_arrayref({ foo=>1, ...}) be more strict to the specification in relation to wanting hash slice keys to be lowercase names. Fixed $sth->execute() to update $dbh->{Statement} to $sth->{Statement}. Added row number to trace output for fetch method calls. Added $h->{FetchHashKeyName} = 'NAME_lc' or 'NAME_uc' to alter behaviour of fetchrow_hashref() method. See docs. Added type_info quote caching to quote() method Makes using quote() with second data type param much much faster. Added type_into_all() caching to type_info() Added new API definition for table_info() and tables(), Added primary_key_info() to DBI API Added primary_key() to DBI API as simpler interface to primary_key_info(). Indent and other fixes for DBI::DBD doc Added prepare_cached() insert_hash() example Removed false docs for fetchall_hashref(), use fetchall_arrayref({}).
2001-08-09Fix dewey in DEPENDS line.wiz1-2/+2
2001-08-01Add and enable kmysqladminskrll1-1/+2
2001-08-01Kmysqladmin is a GUI for administrating a MySQL installationskrll8-0/+110
under KDE/QT Kmysqladmin-0.5.1 specifically works with KDE2. From Scott Presnell <srp@tworoads.net> in pkg/13393.
2001-07-31Add DIST_SUBDIR=ruby.taca2-4/+5
2001-07-29Work arround build problem under Solaris. Fixes PR pkg/13021 bytron1-1/+8
Jeff Rizzo.
2001-07-28Note addition of databases/java-db3.jlam1-1/+2
2001-07-28Make COMMENT reflect package.jlam1-2/+2
2001-07-28java-db3: Java interface to the Sleepcat DB3 library.jlam7-0/+383
Idea provided in pkg/13512 and pkg/13518 by Martti Kuparinen <martti.kuparinen@iki.fi>.
2001-07-27Patch readline detection to try running the test program so that we catchjlam3-137/+182
problems early on if insufficient libraries are specified during linking. Move the configure script patch to the last patch of the group so that the configure script will have the most recent timestamp.
2001-07-27Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the defaultjlam6-6/+12
installation directory in case the package isn't installed.
2001-07-27regen (no more patch-aa)wiz1-2/+1
2001-07-22- Install document and examples.taca2-4/+37
- Utilize USE_RUBY_EXTCONF.
2001-07-20Mechanical changes to buildlink.mk files to use EVAL_PREFIX to setjlam6-12/+12
BUILDLINK_PREFIX.<pkgname>. This allows buildlink to find X11BASE packages regardless of whether they were installed before or after xpkgwedge was installed. Idea by Alistair Crooks <agc@pkgsrc.org>.
2001-07-19Remove hard-coded /usr/pkg/lib from rpath, and mark as USE_BUILDLINK_ONLY.jlam4-19/+69
Also set includedir via configure argument instead of directly patching the configure script, and add a buildlink.mk file for use by other package Makefiles.
2001-07-19Removed obsoleted patch-aa filewulf1-13/+0
2001-07-19Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-07-15Updated geneweb to version 4.02: Many bugfixes and improvementswulf2-10/+17
2001-07-15Update of geneweb to 4.02: Many bugfixes and improvementswulf2-110/+110
2001-07-10Add missing dependence on "php-pcre" package.tron1-1/+2
2001-07-10Install missing language files.tron2-2/+29
2001-07-10Install necessary JavaScript files. Bump version number to 2.1.99.1nb1.tron2-3/+6
2001-07-08Add and enable "phpmyadmin".tron1-1/+2
2001-07-08Initial import of "phpmyadmin" package:tron4-0/+90
Set of PHP-scripts to adminstrate MySQL over the WWW
2001-07-08Move .so into RUBY_SITEARCHLIBDIR since it's arch specific. Pointed outmjl2-4/+4
by Takahiro Kambe <taca@sky.yamashina.kyoto.jp>
2001-07-08Enable ruby-postgresql, ruby-DBI, ruby-DBD-postgresqlmjl1-1/+3