diff options
author | mjl <mjl@pkgsrc.org> | 2003-03-03 11:09:44 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2003-03-03 11:09:44 +0000 |
commit | beb17b6fef928f911582d4043dd23bf842e5277b (patch) | |
tree | 7de1a6c5002cbd1f13401f85392001f5ca397dcd /databases/p5-SQL-Statement/Makefile | |
parent | a7abc1596356a4565c3f575879bd4993ea7e24bf (diff) | |
download | pkgsrc-beb17b6fef928f911582d4043dd23bf842e5277b.tar.gz |
Update p5-SQL-Statement to 1.005
* added support for MySQL-like "DROP TABLE IF EXISTS"
* fixed bug in dotted column names e.g. tableA.colB
* fixed bug in MAX and MIN
* fixed bug in ORDER BY (when col names not in SELECT list)
* added support for delimited identifiers (inside double quotes);
these are case sensitive and can contain spaces and other
special chars
* added support for two forms of escaping single quotes inside
quoted values: 'O\'Brien' or 'O''Brien'
* added support for both C-Style and SQL-Style double-hypen
comments, e.g. /* comment */ or -- comment
* added GetInfo.pm for use with $dbh->get_info()
* fixed bug in update that refers to its own columns
(e.g. SET num = num + 2)
* fixed bug in MIN and MAX when used with strings
* identifiers (names of columns, tables, and table name
aliases) are now all case insensitive as required by the SQL
standard. all older versions including the XS versions used
case sensitive column names
* added numerous examples to test.pl
* improved and/or fixed bugs in:
* placeholder support
* ORDER BY clause
* LIKE/CLIKE/RLIKE/IN predicates
* table name aliases in explicit joins
Diffstat (limited to 'databases/p5-SQL-Statement/Makefile')
-rw-r--r-- | databases/p5-SQL-Statement/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/p5-SQL-Statement/Makefile b/databases/p5-SQL-Statement/Makefile index f4d7d73fa02..6b12103eaf9 100644 --- a/databases/p5-SQL-Statement/Makefile +++ b/databases/p5-SQL-Statement/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2002/10/13 22:22:54 seb Exp $ +# $NetBSD: Makefile,v 1.10 2003/03/03 11:09:44 mjl Exp $ # -DISTNAME= SQL-Statement-1.002 +DISTNAME= SQL-Statement-1.005 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5sqs CATEGORIES= databases perl5 |