Changelog for
perl-DBD-ODBC-1.48-9.2.x86_64.rpm :
Tue Jul 22 14:00:00 2014 vcizekAATTsuse.com
- refreshed perl-DBD-ODBC-1.29-Makefile.diff
(it failed to apply after some of the previous updates)
Mon Mar 17 13:00:00 2014 cooloAATTsuse.com
- updated to 1.48
[MISCELLANEOUS]
Manifest has wrong filename for 90_trace_flags.t
Forgot to remove warning from ODBC.pm that this is a development
release and unicode change when I released 1.47.
Mon Feb 24 13:00:00 2014 cooloAATTsuse.com
- updated to 1.47, see Changes for more
Full release of the 1.46 development releases.
[MISCELLANEOUS]
Just some tidying up of dbdimp.c - shouldn\'t make a difference to anyone.
Further changes to this change file to make it CPAN::Changes spec.
NOTE the changes.cpanhq.com site does not yet support \"unknown\" for
dates.
1.46_2 2013-12-17
[BUG FIXES]
When built with unicode support and odbc_old_unicode is not enabled
columns reported as SQL_LONGVARCHAR were not by default bound as
SQL_WCHAR and hence were not returned correctly unless the bind was
overridden.
[MISCELLANEOUS]
Added test 90_trace_flag.t
1.46_1 2013-11-16
[CHANGE IN BEHAVIOUR]
As warned in release 1.45, the binding of unicode parameters to
char/varchar columns has changed significantly. If you don\'t attempt
to insert unicode into char/varchar columns or if you only inserted
unicode into nchar/nvarchar columns you should see no difference.
From this release, unicode data inserted into
char/varchar/longvarchar columns is bound as SQL_WCHAR and not
whatever the driver reports the parameter as (which is mostly
SQL_CHAR).
Previously if DBD::ODBC received an error or (SQL_SUCCESS_WITH_INFO)
from an ODBC API call and then the driver refused to return the
error state/text DBD::ODBC would issue its own error saying \"Unable
to fetch information about the error\" and state IM008. That state
was wrong and has been changed to HY000.
[BUG FIXES]
Some drivers cannot support catalogs and/or schema names in
SQLTables. Recent changes set the schema/catalog name to the empty
string (good reasons below) which causes \"optional feature not
implemented\" from MS Access (which does not support schemas - even
for a simply ping (which uses SQLTables)). Now we call
SQLCATALOG_NAME and SQLSCHEMA_USAGE on connect to ascertain support
which modifies SQLTables call.
Tue Nov 26 13:00:00 2013 cooloAATTsuse.com
- updated to 1.45, see Changes for (a lot of) details
Sat Jul 27 14:00:00 2013 cooloAATTsuse.com
- updated to 1.43, see Changes (a lot)
Fri Dec 2 13:00:00 2011 vcizekAATTsuse.com
- update to 1.33
[ENHANCEMENTS]
* Enable multiple active statement support in 70execute_array.t for
drivers we recognise which support MAS.
* Change column_info to support Unicode catalog/schema/table/column
names.
* Use SQLGetTypeInfoW on unicode builds.
* DBD::ODBC now allows unicode catalog/schema/table parameters to be
passed to table_info. Of course they will only reliably work with
a supporting Unicode ODBC driver.
* Added new odbc_driver_complete attribute allowing the ODBC Driver
Manager and ODBC Driver to throw dialogues for incomplete
connection strings or expired passwords etc.
[BUG FIXES]
* remove debugging printf which output \"HERE\" in some rare cases.
rt 72534 - thanks John Deighan for spotting this.
* The test 70execute_array.t could fail due to warning being output
if the driver does not support Multiple Active Statements.
* Fix bug in utf16_copy which was not adding a trailing NUL but I\'m
not sure this affected anyone until I changed table_info this
release.
* I omitted rt_68720.t from the 1.31 distribution which leads
to a warning as it is mentioned in the MANIFEST.
[DOCUMENTATION]
* new FAQ entries
* added note saying you cannot pass unicode schema/table/column
names to metadata calls like table_info/column_info currently.
[OTHER]
* Changed line endings in README.af and README.unicode to be unix
line endings and native eol-style in subversion.
* Minor changes to Makefile.PL to save the opensuse guys patching.
* Added unicode_sql.pl and unicode_params.pl examples
* added more examples
Sat Aug 27 14:00:00 2011 chrisAATTcomputersalat.de
- fix deps
* perl(Test::Simple) >= 0.88
* perl(DBI) >= 1.609
Fri Jun 24 14:00:00 2011 vcizekAATTnovell.com
- update to 1.31
[ENHANCEMENTS]
* An extra argument has been added to the sub associated with
odbc_err_handler. The arguments passed to the odbc_err_handler are
now state (string), error (string), native error code (number) and
the status returned from the last ODBC API. The status will be
SQL_ERROR (-1) for errors or SQL_SUCCESS_WITH_INFO (1) for
informational messages.
* Added support for StrictlyTyped and DiscardString to the bind_col
method.
* Added the new odbc_describe_parameters attribute.
* added -w option to Makefile.PL to add \"-Wall\" to CCFLAGS and
- fno-strict-aliasing so I can find warnings.
* Cope with broken ODBC drivers that describe a parameter as SQL
type 0.
Sat Jun 18 14:00:00 2011 cooloAATTnovell.com
- fix requires of examples
- use original tar
Wed Mar 9 13:00:00 2011 vcizekAATTnovell.com
- update to 1.29
* Fixed missing SQL_MAX_TABLE_NAME_LEN definition from test.
* Fixed problem with some drivers which batch \"insert;select\" where
SQLMoreResults is not required and an extra describe is done.
* Fixed \"select 1\" in 02simple.t for Firebird ODBC Driver.
* disconnect call added to 70execute_array.t was in the wrong place.
* Added support for DBI\'s new trace flags ENC, CON, TXN and
DBD.
* And many other fixes and enhancements
Fri Jan 7 13:00:00 2011 vcizekAATTnovell.com
- update to 1.27
Minor fix to head in pod
rt63550 fix and test code and added pod notes on \"do\"
snprintf buffer overflow when GetTypeInfo values are negative
capture execute error in rt_62033.t
Wed Dec 1 13:00:00 2010 cooloAATTnovell.com
- switch to perl_requires macro
Thu Sep 23 14:00:00 2010 anickaAATTsuse.cz
- update to 1.25
* Changed bind_col so it actually pays attention to the TYPE
attribute as you could not override the bind type of a bound
column before.
* Left a sv_undef in
* Change sprintf to snprintf for safety.
* Removed some unused fields from the fbh structure which should
save a little memory for each column in a result-set.
* Started adding support for DBI\'s DiscardString and StrictlyTyped
but not complete yet so don\'t use them yet.
* Added experimental odbc_lob_read method - see pod.
* Moved the binding of columns to the first call to fetch instead of
after execute is called as it prevents bind_col overrriding the
type used for binding and I needed it to support odbc_lob_read.
* Removed support for DBI\'s blob_read - it was totally flawed and
did not work at all. May replace in the future.
* Added support for MS SQL Server XML type (SQL type -152).
* bugfixes, new FAQs
Sun Jul 25 14:00:00 2010 chrisAATTcomputersalat.de
- removed dos2unix usage
Thu Jun 3 14:00:00 2010 chrisAATTcomputersalat.de
update to 1.24
o please see Changes file
- recreated spec by cpanspec 1.78
- added examples to doc
Fri Feb 26 13:00:00 2010 anickaAATTsuse.cz
- update to 1.23
* bugfixes, test fixes
Sun Jan 10 13:00:00 2010 jengelhAATTmedozas.de
- enable parallel build
Mon Aug 3 14:00:00 2009 anickaAATTsuse.cz
- update to 1.22
* bugfixes
Mon May 18 14:00:00 2009 anickaAATTsuse.cz
- update to 1.21
* bugfixes, documentation fixes
Tue Apr 28 14:00:00 2009 anickaAATTsuse.cz
- update to 1.20
* bugfixes, test fixes
Mon Apr 6 14:00:00 2009 anickaAATTsuse.cz
- update to 1.19
* test fixes