DBD-mysql
DBD-mysql copied to clipboard
MySQL driver for the Perl5 Database Interface (DBI)
### DBD::mysql version 5.003 ### MySQL client version mysql80-client-8.0.35 from pkg repository. ### Server version 8.0.35? ### Operating system version FreeBSD 14.0-RELEASE-p5 ### What happened? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=275100#c10 I have problem with...
### DBD::mysql version 5.1.0 ### MySQL client version 8.0.32 ### Server version 8.0.34 ### Operating system version Linux Gentoo (kernel 6.6.8) ### What happened? DBD should encode texts into UTF-8...
### What enhancement would you like in DBD::mysql? Use the Asynchronous Interface of the C API that MySQL provides. This might allow newer/better async support and it might partly replace...
GitHub has windows runners, but it looks like MySQL requires a quite old Visual C++ version according to https://dev.mysql.com/doc/c-api/8.0/en/c-api-building-clients.html
The utf8 encoding changes have resulted in a regression that has unexpected side effects. Consider the following table: create table foo (foo longblob); and script: use DBI; my $dbh =...
rt61849-bind-param-buffer-overflow.t , A core occurred while executing this case The content is as follows: use strict; use warnings; use Test::More; use DBI; use vars qw($test_dsn $test_user $test_password); #require "t/lib.pl"; my...
Migrated from [rt.cpan.org#75540](https://rt.cpan.org/Ticket/Display.html?id=75540) (status was 'new') Requestors: * [email protected] Attachments: * [ph_in_comment.pl](https://rt.cpan.org/Ticket/Attachment/1046355/546762/ph_in_comment.pl) From [email protected] on 2012-03-05 09:01:59: ``` With mysql_server_prepare=0 line $dbh->do(qq[update t1 set id=id+1 where / col1=? and/ id=?],undef,1)...
The C code implementation has a few blocks like this: ``` if ( #if MYSQL_VERSION_ID >=SERVER_PREPARE_VERSION mysql_autocommit(imp_dbh->pmysql, bool_value) #else mysql_real_query(imp_dbh->pmysql, bool_value ? "SET AUTOCOMMIT=1" : "SET AUTOCOMMIT=0", 16) #endif )...
Migrated from [rt.cpan.org#77952](https://rt.cpan.org/Ticket/Display.html?id=77952) (status was 'new') Requestors: * [email protected] From [email protected] on 2012-06-21 20:26:32: ``` First table definition: create table delivery_lists ( code serial, created datetime not null ); Second...