in reply to DBD::MariaDB + DBIx::Class = woes

Have you tried taking DBIx::Class::Storage::DBI::mysql, run it through
s/mysql/MariaDB/
and save it to DBIx/Class/Storage/DBI/MariaDB.pm to create the missing driver?

Many Perl users would thank you if it worked and you published your work :-)

map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]

Replies are listed 'Best First'.
Re^2: DBD::MariaDB + DBIx::CLass = woes
by bliako (Abbot) on Nov 07, 2023 at 12:35 UTC
      I'm out of ideas. I've never used DBIx::Class more than a toy, as for any serious SQL work, I found it easier to write the actual SQL statements myself. Your journey is another example what I've been afraid of.

      map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]

        yep!

        TYhe good news is that solution #1 (i.e. install mariadb server and DBD::mysql but don't touch anything in Perl at all i.e. dsn to by DBI::mysql) works OK after perserviring. I guess there is a dead end because this is the simplest solution and nobody (should) bothers with the other way.

        thank you // bw, bliako

Re^2: DBD::MariaDB + DBIx::CLass = woes
by 1nickt (Canon) on Nov 07, 2023 at 12:33 UTC