Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-DBD-ODBC | Distribution: SUSE Linux Enterprise 15 SP5 |
Version: 1.61 | Vendor: openSUSE |
Release: bp155.2.10 | Build date: Wed May 17 17:23:33 2023 |
Group: Development/Libraries/Perl | Build host: obs-arm-2 |
Size: 821023 | Source RPM: perl-DBD-ODBC-1.61-bp155.2.10.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://metacpan.org/release/DBD-ODBC | |
Summary: ODBC Driver for DBI |
ODBC Driver for DBI
Artistic-1.0 OR GPL-1.0-or-later
* Sat Feb 01 2020 Markus Beth <markus.beth@web.de> - updated to 1.61 see /usr/share/doc/packages/perl-DBD-ODBC/Changes 1.61 2020-01-30 [BUG FIXES] Fix 12blob.t test by pali Fix searching for ODBC libraries in system by pali (#15) [ENHANCEMENTS] use PERL_NO_GET_CONTEXT for more performance by markusbeth (#13) [MISCELLANEOUS] Fix travis builds for older Perls by pali * Thu Nov 08 2018 Stephan Kulow <coolo@suse.com> - updated to 1.60 see /usr/share/doc/packages/perl-DBD-ODBC/Changes 1.60 2018-10-31 [BUG FIXES] Merged pull request 11 from audun which fixes some issues with the AutoCommit flag on commit and rollback. [MISCELLANEOUS] Merged pull request 10 from vadz which fixed typo (affecting license) in README.md. * Sat Aug 11 2018 coolo@suse.com - updated to 1.59 see /usr/share/doc/packages/perl-DBD-ODBC/Changes 1.59 2018-08-10 [BUG FIXES] git issue 8. Setting odbc_utf8_on didn't work properly. Thanks to David Wheeler for reporting and helping to debug. * Wed Mar 21 2018 coolo@suse.com - updated to 1.58 see /usr/share/doc/packages/perl-DBD-ODBC/Changes 1.58 2018-03-01 [MISCELLANEOUS] Various changes to the test suite to get better results with Postgres 1.57 2018-03-01 [MISCELLANEOUS] Merged pull request 6 from genio which allows Makefile.PL argument -u to be set via the environment variable DBD_ODBC_UNICODE This version was removed from CPAN because it was uploaded with a nasty bug in the diagnostics code. * Fri Mar 02 2018 coolo@suse.com - updated to 1.57 see /usr/share/doc/packages/perl-DBD-ODBC/Changes * Fri Oct 07 2016 coolo@suse.com - updated to 1.56 see /usr/share/doc/packages/perl-DBD-ODBC/Changes 1.56 2016-10-06 Full release of the 1.53 development series One version skipped because of indexing problems. 1.53_2 2016-02-03 [MISCELLANEOUS] Add new FAQs 1.53_1 2015-10-16 [BUG FIXES] Strictly speaking this is a bug fix to DBI and not DBD::ODBC but DBI now supports 64 bit row counts where an IV in perl is 64 bits. However, it necessitated changes to DBD::ODBC to pick up the fix. odbc_rows (my workaround since 2012) is still supported but should no longer be required so long as you use this DBD::ODBC and DBI 1.633_92 or above. [INTERNALS] Removed dbd_st_rows and now setting DBIc_ROW_COUNT. [DOCUMENTATION] Add tables and table_info section to deviations from the DBI spec. [MISCELLANEOUS] Change column name in t/rt_101579.t as "method" is a reserved word in. Teradata Thanks to Zhenyi Zhou. Remove duplicate dynamic_config from META.yml. * Tue Sep 01 2015 coolo@suse.com - updated to 1.52 see /usr/share/doc/packages/perl-DBD-ODBC/Changes 1.52 2015-04-15 [MISCELLANEOUS] Changes to the test suite to make it run better with Postgres thanks to Greg Sabino Mullane. 1.51_4 2015-01-18 [BUG FIXES] Numerous errors in the test suite (with SQLite ODBC driver) mostly down to not creating the test table first. [MISCELLANEOUS] Try and make the test suite run ok for SQLite ODBC driver so I can use it in travis-ci. 1.51_3 2015-01-17 [BUG FIXES] RT101579 - using bound input parameters for numeric columns (e.g., SQL_NUMERIC) only works the first time and will quite likey fail with "string data, right truncation" on the second and subsequent calls to execute. Thanks to Laura Cox for finding. 1.51_2 2014-11-19 [BUG FIXES] The table_info method (ANSI version only) was incorrectly passing the table name for the type argument. I think this bug was introduced last year. 1.51_1 2014-11-14 [BUG FIXES] RT100186 - handle VARBINARY(MAX) parameters with SQL Server native client. Identify "libmsodbcsql*" as the MS ODBC Driver for Linux as there are some specific workarounds for MS Native Client ODBC driver. 1.50 2014-07-25 [BUG FIXES] The 80_odbc_diags.t test could fail if a driver fails a table does not exist test in the prepare instead of the execute. 1.49_4 2014-07-08 [BUG FIXES] Fixed sql_type_cast.t test which assumed column aliases which stay lowercase. Fixed 87_odbc_lob_read.t test which did not bow out of the test properly if the database was not MS SQL Server. [DOCUMENTATION] Revised the query notification example and documentation. Added a link to a better Query Notification article. 1.49_3 2014-05-01 [CHANGE IN BEHAVIOUR] As warned years ago, this release removes the odbc_old_unicode attribute. If you have a good reason to use it speak up now before the next non-development release. [BUG FIXES] Fix rt89255: Fails to create test table for tests using PostgreSQL odbc driver. Change test suite to fallback on PRECISION if COLUMN_SIZE is not found. [ENHANCEMENTS] Added support for MS SQL Server Query Notification. See the new section in the pod. Added a currently undocumented (and experimental) odbc_describe_param method on a statement handle which takes a parameter number as the only argument and returns an array of the data type, parameter size, decimal digits and nullable (as per SQLDescribeParam). [DOCUMENTATION] Added FAQ on truncated column names with freeTDS. [MISCELLANEOUS] I have removed the "experimental" tag for odbc_getdiagfield and odbc_getdiagrec methods. 1.49_2 2014-04-26 [BUG FIXES] Change to data_sources in 1.49_1 could lead to a compile error since data_sources was not returning a value if an error occurred. 1.49_1 2014-04-25 [BUG FIXES] If you had a lot of DSNs on Windows (more than 280 but it depends on the length of their names) and called the data_sources method it could crash your script. Code internally changed to stop putting the DSNs returned on the stack. [CHANGE IN BEHAVIOUR] As warned years ago, the private data_sources method has been removed - use DBI one instead. [MISCELLANEOUS] Added FAQ entry of maximum number of allowed parameters. * Tue Jul 22 2014 vcizek@suse.com - refreshed perl-DBD-ODBC-1.29-Makefile.diff (it failed to apply after some of the previous updates) * Mon Mar 17 2014 coolo@suse.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 2014 coolo@suse.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.
/usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/DBD /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/DBD/ODBC /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/DBD/ODBC.pm /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/DBD/ODBC/Changes.pm /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/DBD/ODBC/FAQ.pm /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/DBD/ODBC/TO_DO.pm /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto/DBD /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto/DBD/ODBC /usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto/DBD/ODBC/ODBC.so /usr/share/doc/packages/perl-DBD-ODBC /usr/share/doc/packages/perl-DBD-ODBC/Changes /usr/share/doc/packages/perl-DBD-ODBC/FAQ /usr/share/doc/packages/perl-DBD-ODBC/README /usr/share/doc/packages/perl-DBD-ODBC/README.RH9 /usr/share/doc/packages/perl-DBD-ODBC/README.adabas /usr/share/doc/packages/perl-DBD-ODBC/README.af /usr/share/doc/packages/perl-DBD-ODBC/README.hpux /usr/share/doc/packages/perl-DBD-ODBC/README.informix /usr/share/doc/packages/perl-DBD-ODBC/README.osx /usr/share/doc/packages/perl-DBD-ODBC/README.sqlserver /usr/share/doc/packages/perl-DBD-ODBC/README.unicode /usr/share/doc/packages/perl-DBD-ODBC/README.windows /usr/share/doc/packages/perl-DBD-ODBC/TO_DO /usr/share/doc/packages/perl-DBD-ODBC/examples /usr/share/doc/packages/perl-DBD-ODBC/examples/DbiTest.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/DbiTest2.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/Test_Dates_Jun19.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/backup_restore.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/big_result.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/cancel_big_fetch.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/column_info.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/dml_counts.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/driver_complete.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/enable_odbc_tracing.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/execute_for_fetch.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/getinfo.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/identity.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/joetest7.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/leakcheck.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/listtabs.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/lob_read.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/longbin.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/money_test.cgi /usr/share/doc/packages/perl-DBD-ODBC/examples/moreresults.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/multiple_active_stmts.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/northwind.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/odbc_diag.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/params_in_error.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/perl-DBD-ODBC.spec /usr/share/doc/packages/perl-DBD-ODBC/examples/proctest1.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/proctest2.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/proctest3.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/raiserror.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/randombind.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/set_nocount_on.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/sqlserver_supplementary_chrs.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/sqltmptabs.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/temp_table.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testPrc.sql /usr/share/doc/packages/perl-DBD-ODBC/examples/testclob.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testconn.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testconnspeed.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testcrtable.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testdatasources.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testdestruction.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testdisc.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testerrhandler.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testfunc.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testgetinfo.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testigparams.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testinout.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testkeys.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testmoney.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testmulti.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testproc.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testproc2.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testproc3.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testproc4.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testspmulti.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testundef.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testundef2.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testundef3.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testver.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/testxml.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/thrtest.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/timetest.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/unicode_params.pl /usr/share/doc/packages/perl-DBD-ODBC/examples/unicode_sql.pl /usr/share/doc/packages/perl-DBD-ODBC/if_you_are_taking_over_this_code.txt /usr/share/doc/packages/perl-DBD-ODBC/test_results.txt /usr/share/man/man3/DBD::ODBC.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 18:17:49 2024