mysql2
mysql2 copied to clipboard
A modern, simple and very fast Mysql library for Ruby - binding to libmysql
OS: Mac Catalina 10.15.5 Rails: 6.0.2.2 ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x86_64-darwin19] In my Gemfile, I have: gem 'mysql2', '0.5.3' When I do bundle, install, it seems as if everything...
I'm trying to install mysql2 on my centOS8 server rpm install doesn't do anything gem install mysql2 return an error and I'm confused Mysql2 version is : mysql2-0.5.3 MariaDB version...
(If there's a mailing list or somewhere else that I should be asking this instead of here, I'm sorry, please let me know, and I'll ask there instead.) Is it...
Hello! Your current CI uses libmariadbclient-dev. This is fine for now, but in the future when you update the Debian/Ubuntu version you are using in the CI, you should change...
Hi, I'm using snap ruby 2.6, mariadb 10.4, on ubuntu 16.04. Building mysql2 through bundle leads to ``` Fetching mysql2 0.5.3 (was 0.5.2) Installing mysql2 0.5.3 (was 0.5.2) with native...
Really enjoy your gem, But have some databases i need call where they are not always up to date with users / password / schema. what i have noticed is...
`:sslverify` is deprecated as of MySQL 5.7.11 and completely removed in MySQL 8.0. `:ssl_mode` should be used instead for establishing SSL connection with MySQL. @sodabrew suggested migrating all users to...
Updated the README to better reflect the update SSL options that Mysql supports for versions >= 5.7.11. I was struggling with understanding the difference between `verify_ssl` and `ssl_mode` and felt...
test.rb file: ```ruby #!/usr/bin/ruby # require "mysql2" mysql_client = Mysql2::Client.new( :host => 'localhost', :username => 'root', :password => 'xxxxx', :database => 'xxxx', :encoding => 'utf8' ) ``` ```shell ruby test.rb...
Hi There, Seems that the gem doesn't handle new error codes introduced by MariaDB 10.4. See this following error code `1396` which MariaDB throws when attempting to insert a new...