MySQL.jl
MySQL.jl copied to clipboard
Access MySQL from Julia
Hopefully fix https://github.com/JuliaDatabases/MySQL.jl/issues/201.
@quinnj I'm thinking about building out some infrastructure for pooling connections (similar to the js [mysql package](https://github.com/mysqljs/mysql)). A few questions: 1. Is this already part of the overhaul? (I'm exited...
I have a MySQL database (not a MariaDB). My configuration file is: ``` [Client] user=root password="qwerty123" database=testdb host=127.1 ``` When connecting with `DBInterface.connect(MySQL.Connection, "", "", ""; option_file="/home/me/.my.cnf", option_group="Client")` I get...
``` WARNING: Method definition mysql_get_option(Ptr{Nothing}, Integer, Ref{UInt32}) in module API at C:\Users\KaisermayerV\.julia\packages\MySQL\tCDUl\src\api\ccalls.jl:218 overwritten at C:\Users\KaisermayerV\.julia\packages\MySQL\tCDUl\src\api\ccalls.jl:225. ``` version = "1.4.3"
Using Julia 1.10 I get the error below. I am not sure how to fix this though.... ``` WARNING: Method definition mysql_get_option(Ptr{Nothing}, Integer, Ref{UInt32}) in module API at C:\Users\bernhard.koenig\.julia\packages\MySQL\pGOcg\src\api\ccalls.jl:218 overwritten...
Recently, `MySQL.transaction(conn) do` is not working anymore for me. I am not sure if this is related to `DBInterface.jl` or MySQL.jl If I explicitly qualify `execute` as `DBInterface.execute(conn, "START TRANSACTION")`...
column types are not correctly inferred when updating mariadb to version 11. It's probably worthwhile switching to the latest [mariadb c connector](https://mariadb.com/kb/en/mariadb-connector-c-3-3-5-release-notes) with MariaDB Server 10: ```julia julia> DataFrame(DBInterface.execute(conn, "select...
Hi, As far as I can see, `MySQL.load` does not use any information about column names and I think this can lead to bad behaviour, see for example: ``` julia...
So I have a simple test table that looks like this: ``` +-------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+--------------+------+-----+---------+-------+ | id |...
Hello, When I execute two queries, the first result becomes random. Given the database: ```sql create database test; use test; create table person ( id int auto_increment, name varchar(100), primary...