From: ivan Date: Tue, 23 Oct 2001 16:00:42 +0000 (+0000) Subject: 0.19 X-Git-Tag: DBIX_DBSCHEMA_0_19 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=b5a2b06dffe1802ea57921b330dc6ab2004c8dc5;p=DBIx-DBSchema.git 0.19 --- diff --git a/Changes b/Changes index 987313a..3845dec 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for Perl extension DBIx::DBSchema. +0.19 Tue Oct 23 08:49:12 2001 + - documentation for %typemap + - preliminary Sybase driver from Charles Shapiro + and Mitchell J. Friedman + . + - Fix Column::line to return a scalar as documented, not a list. + - Should finally eliminate the Use of uninitialized value at + ... DBIx/DBSchema/Column.pm line 251 + 0.18 Fri Aug 10 17:07:28 2001 - Added Table::delcolumn - patch from Charles Shapiro to add diff --git a/DBSchema/DBD.pm b/DBSchema/DBD.pm index 5ecdb5c..a4c6000 100644 --- a/DBSchema/DBD.pm +++ b/DBSchema/DBD.pm @@ -74,7 +74,7 @@ L. You can define a %typemap array for your driver to map "standard" data types to database-specific types. For example, the MySQL TIMESTAMP field has non-standard auto-updating semantics; the MySQL DATETIME type is -what other databases and the ODBC standard call TIMESTAMP, so on of the +what other databases and the ODBC standard call TIMESTAMP, so one of the entries in the MySQL %typemap is: 'TIMESTAMP' => 'DATETIME',